| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
|
Test not included, as the test_embed case requires the following changes:
|
Sorry, something went wrong.
Head branch was pushed to by a user without write access
|
This now avoids ABI changes. I'm not sure #118618 (comment) can be applied here. I'm fine with this. |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
The _strptime module object was cached in a static local variable (in the datetime.strptime() implementation). That's a problem when it crosses isolation boundaries, such as reinitializing the runtme or between interpreters. This change fixes the problem by dropping the static variable, instead always relying on the normal sys.modules cache (via PyImport_Import()).
(cherry picked from commit 127c1d2, AKA gh-120224)