We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UnknownTimeZoneError
The following code:
import pytz import datetime import pickle tzinfo = pytz.tzfile.build_tzinfo('local', open('/etc/localtime' ,'rb')) dt = datetime.datetime(2023, 1, 1, tzinfo=tzinfo) data = pickle.dumps(dt) # b'\x80\x04\x95O\x00\x00\x00\x00\x00\x00\x00\x8c\x08datetime\x94\x8c\x08datetime\x94\x93\x94C\n\x07\xe7\x01\x01\x00\x00\x00\x00\x00\x00\x94\x8c\x04pytz\x94\x8c\x02_p\x94\x93\x94(\x8c\x05local\x94K\x00K\x00\x8c\x03WET\x94t\x94R\x94\x86\x94R\x94.' pickle.loads(data)
Raises the following exception:
Traceback (most recent call last): File "/usr/local/lib/python3.11/site-packages/pytz/__init__.py", line 309, in _p return unpickler(*args) ^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/site-packages/pytz/tzinfo.py", line 539, in unpickler tz = pytz.timezone(zone) ^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.11/site-packages/pytz/__init__.py", line 188, in timezone raise UnknownTimeZoneError(zone) pytz.exceptions.UnknownTimeZoneError: 'local'
On Python 3.11 with pytz 2022.7
Is there a way to have pytz register where the local zone can be found during unpickling?
local
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following code:
Raises the following exception:
On Python 3.11 with pytz 2022.7
Is there a way to have pytz register where the
local
zone can be found during unpickling?The text was updated successfully, but these errors were encountered: