Skip to content

Conversation

@vstinner
Copy link
Member

@vstinnervstinner commented Oct 17, 2023

  • Replace _Py_strhex() with few lines of code.
  • Replace _PyType_GetModuleState() with PyType_GetModuleState().

📚 Documentation preview 📚: https://cpython-previews--110967.org.readthedocs.build/

@vstinner
Copy link
MemberAuthor

Replace _Py_strhex() with few lines of code.

For now, I prefer to not add such function to the public C API, since users may want many variants:

  • Uppercase letters
  • Space separator
  • Get a bytes object instead of a str object

See Include/internal/pycore_strhex.h: there are 4 functions with different arguments.

* Replace _Py_strhex() with few lines of code. * Replace _PyType_GetModuleState() with PyType_GetModuleState(). * Fix make check-c-globals
@vstinnervstinner enabled auto-merge (squash) October 17, 2023 10:30
@vstinner
Copy link
MemberAuthor

The _md5 extension is not used in practice:

vstinner@mona$ ./pythonPython3.13.0a1+ (heads/limited_md5-dirty:417055ae80, Oct172023, 12:28:44) [GCC13.2.120231011 (RedHat13.2.1-4)] onlinuxType"help", "copyright", "credits"or"license"formoreinformation. >>>import_md5>>>h1=_md5.md5(b'Python') >>>type(h1).__module__'_md5'>>>importhashlib>>>h2=hashlib.new('md5', b'Python') >>>type(h2).__module__'_hashlib'>>>h1.digest() ==h2.digest() True

hashlib uses the OpenSSL implementation of MD5. The _md5 extension is only used when OpenSSL is missing, which should not be the case on Linux, Windows, macOS, FreeBSD, etc.

@vstinnervstinner merged commit 4dba0a6 into python:mainOct 17, 2023
@vstinnervstinner deleted the limited_md5 branch October 17, 2023 10:57
aisk pushed a commit to aisk/cpython that referenced this pull request Feb 11, 2024
* Replace _Py_strhex() with few lines of code. * Replace _PyType_GetModuleState() with PyType_GetModuleState(). * Fix make check-c-globals.
Glyphack pushed a commit to Glyphack/cpython that referenced this pull request Sep 2, 2024
* Replace _Py_strhex() with few lines of code. * Replace _PyType_GetModuleState() with PyType_GetModuleState(). * Fix make check-c-globals.
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@vstinner