diff options
author | Erlend E. Aasland <erlend.aasland@protonmail.com> | 2023-02-15 21:58:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-15 21:58:48 (GMT) |
commit | c1ce0d178fe57b50f37578b285a343d77485ac02 (patch) | |
tree | 0278769834169272434cde8833fe58befc955f52 /Misc | |
parent | eb0c485b6c836abb71932537a5058344d11d7bc8 (diff) | |
download | cpython-c1ce0d178fe57b50f37578b285a343d77485ac02.zip cpython-c1ce0d178fe57b50f37578b285a343d77485ac02.tar.gz cpython-c1ce0d178fe57b50f37578b285a343d77485ac02.tar.bz2 |
gh-99138: Isolate _zoneinfo (#99218)
* Convert zone info type to heap type and add it to module state
* Add global variables to module state
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-01-02-22-41-44.gh-issue-99138.17hp9U.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-01-02-22-41-44.gh-issue-99138.17hp9U.rst b/Misc/NEWS.d/next/Library/2023-01-02-22-41-44.gh-issue-99138.17hp9U.rst new file mode 100644 index 0000000..3dd4646 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-01-02-22-41-44.gh-issue-99138.17hp9U.rst @@ -0,0 +1 @@ +Apply :pep:`687` to :mod:`zoneinfo`. Patch by Erlend E. Aasland. |