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 /Doc | |
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 'Doc')
-rw-r--r-- | Doc/library/zoneinfo.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/zoneinfo.rst b/Doc/library/zoneinfo.rst index d2e5619..f8624da 100644 --- a/Doc/library/zoneinfo.rst +++ b/Doc/library/zoneinfo.rst @@ -241,7 +241,7 @@ The following class methods are also available: .. warning:: Invoking this function may change the semantics of datetimes using - ``ZoneInfo`` in surprising ways; this modifies process-wide global state + ``ZoneInfo`` in surprising ways; this modifies module state and thus may have wide-ranging effects. Only use it if you know that you need to. |