diff options
author | Rami <72725910+ramikg@users.noreply.github.com> | 2024-01-06 23:25:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-06 23:25:58 (GMT) |
commit | 84d1f76092c24c4d6614797cc10eb8a231397646 (patch) | |
tree | 23b774a14c70c212a057da70fda89a0be5bb7831 /Tools/c-analyzer/cpython/_parser.py | |
parent | a15a7735e69862fdfc0ed21bc1ade3a32833a01d (diff) | |
download | cpython-84d1f76092c24c4d6614797cc10eb8a231397646.zip cpython-84d1f76092c24c4d6614797cc10eb8a231397646.tar.gz cpython-84d1f76092c24c4d6614797cc10eb8a231397646.tar.bz2 |
gh-89532: Remove LibreSSL workarounds (#28728)
Remove LibreSSL specific workaround ifdefs from `_ssl.c` and delete the non-version-specific `_ssl_data.h` file (relevant for OpenSSL < 1.1.1, which we no longer support per PEP 644).
Co-authored-by: Christian Heimes <christian@python.org>
Co-authored-by: Gregory P. Smith <greg@krypto.org>
Diffstat (limited to 'Tools/c-analyzer/cpython/_parser.py')
-rw-r--r-- | Tools/c-analyzer/cpython/_parser.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Tools/c-analyzer/cpython/_parser.py b/Tools/c-analyzer/cpython/_parser.py index 239ed4e..444063d 100644 --- a/Tools/c-analyzer/cpython/_parser.py +++ b/Tools/c-analyzer/cpython/_parser.py @@ -70,7 +70,6 @@ Python/thread_pthread.h Python/thread_pthread_stubs.h # only huge constants (safe but parsing is slow) -Modules/_ssl_data.h Modules/_ssl_data_31.h Modules/_ssl_data_300.h Modules/_ssl_data_111.h @@ -333,7 +332,7 @@ MAX_SIZES = { _abs('Python/stdlib_module_names.h'): (5_000, 500), # These large files are currently ignored (see above). - _abs('Modules/_ssl_data.h'): (80_000, 10_000), + _abs('Modules/_ssl_data_31.h'): (80_000, 10_000), _abs('Modules/_ssl_data_300.h'): (80_000, 10_000), _abs('Modules/_ssl_data_111.h'): (80_000, 10_000), _abs('Modules/cjkcodecs/mappings_*.h'): (160_000, 2_000), |