Skip to content

BUG: Period.strftime crashes for invalid format strings #53562

Open
@JozsefKutas

Description

@JozsefKutas

Pandas version checks

  • I have checked that this issue has not already been reported.

  • I have confirmed this bug exists on the latest version of pandas.

  • I have confirmed this bug exists on the main branch of pandas.

Reproducible Example

import pandas as pd
period = pd.Period("2023-Q2")
period.strftime("%Y-Q%Q")  # %Q is invalid, should be %q
# Process finished with exit code -1073740791 (0xC0000409)

Issue Description

Calling Period.strftime with an invalid format string crashes the Python session.

Expected Behavior

Ideally, an exception would be raised instead. For example, with Timestamp:

import pandas as pd
ts = pd.Timestamp("2023-06-08")
ts.strftime("%Y-Q%Q")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "pandas\_libs\tslibs\timestamps.pyx", line 1493, in pandas._libs.tslibs.timestamps.Timestamp.strftime
ValueError: Invalid format string

Installed Versions

INSTALLED VERSIONS

commit : 965ceca
python : 3.9.7.final.0
python-bits : 64
OS : Windows
OS-release : 10
Version : 10.0.19044
machine : AMD64
processor : Intel64 Family 6 Model 140 Stepping 1, GenuineIntel
byteorder : little
LC_ALL : None
LANG : None
LOCALE : English_United Kingdom.1252

pandas : 2.0.2
numpy : 1.24.3
pytz : 2023.3
dateutil : 2.8.2
setuptools : 57.4.0
pip : 21.2.3
Cython : None
pytest : None
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : None
html5lib : None
pymysql : None
psycopg2 : None
jinja2 : None
IPython : None
pandas_datareader: None
bs4 : None
bottleneck : None
brotli : None
fastparquet : None
fsspec : None
gcsfs : None
matplotlib : None
numba : None
numexpr : None
odfpy : None
openpyxl : None
pandas_gbq : None
pyarrow : None
pyreadstat : None
pyxlsb : None
s3fs : None
scipy : None
snappy : None
sqlalchemy : None
tables : None
tabulate : None
xarray : None
xlrd : None
zstandard : None
tzdata : 2023.3
qtpy : None
pyqt5 : None

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions