diff options
author | neonene <53406459+neonene@users.noreply.github.com> | 2024-03-29 09:40:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-29 09:40:48 (GMT) |
commit | 7e2fef865899837c47e91ef0180fa59eb03e840b (patch) | |
tree | 9b50ca60334e83df3546289221d72c275fb9b466 /Tools | |
parent | 2e9be80c99f635c2f7761e8356b0260922d6e7a6 (diff) | |
download | cpython-7e2fef865899837c47e91ef0180fa59eb03e840b.zip cpython-7e2fef865899837c47e91ef0180fa59eb03e840b.tar.gz cpython-7e2fef865899837c47e91ef0180fa59eb03e840b.tar.bz2 |
gh-117142: ctypes: Migrate global vars to module state (GH-117189)
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/c-analyzer/cpython/globals-to-fix.tsv | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/c-analyzer/cpython/globals-to-fix.tsv b/Tools/c-analyzer/cpython/globals-to-fix.tsv index 92fab9b..65f94e5 100644 --- a/Tools/c-analyzer/cpython/globals-to-fix.tsv +++ b/Tools/c-analyzer/cpython/globals-to-fix.tsv @@ -416,14 +416,14 @@ Modules/xxmodule.c - ErrorObject - ## manually cached PyUnicodeOjbect Modules/_ctypes/callproc.c _ctypes_get_errobj error_object_name - -Modules/_ctypes/_ctypes.c CreateSwappedType suffix - +Modules/_ctypes/_ctypes.c CreateSwappedType swapped_suffix - ##----------------------- ## other ## initialized once Modules/_ctypes/_ctypes.c - _unpickle - -Modules/_ctypes/_ctypes.c PyCArrayType_from_ctype cache - +Modules/_ctypes/_ctypes.c PyCArrayType_from_ctype array_cache - Modules/_cursesmodule.c - ModDict - Modules/_datetimemodule.c datetime_strptime module - |