]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-40302: Add pycore_byteswap.h header file (GH-19552)
authorVictor Stinner <vstinner@python.org>
Fri, 17 Apr 2020 15:47:20 +0000 (17:47 +0200)
committerGitHub <noreply@github.com>
Fri, 17 Apr 2020 15:47:20 +0000 (17:47 +0200)
commit1ae035b7e847064d09df01ca62b8a761e9b5aae3
treec19d137bda77399ba49996f69a14fce4029c8120
parent485e715cb1ff92bc9882cd51ec32589f9cb30503
bpo-40302: Add pycore_byteswap.h header file (GH-19552)

Add a new internal pycore_byteswap.h header file with the following
functions:

* _Py_bswap16()
* _Py_bswap32()
* _Py_bswap64()

Use these functions in _ctypes, sha256 and sha512 modules,
and also use in the UTF-32 encoder.

sha256, sha512 and _ctypes modules are now built with the internal
C API.
13 files changed:
Include/internal/pycore_byteswap.h [new file with mode: 0644]
Include/pyport.h
Lib/test/test_capi.py
Makefile.pre.in
Modules/Setup
Modules/_ctypes/cfield.c
Modules/_testinternalcapi.c
Modules/sha256module.c
Modules/sha512module.c
Objects/stringlib/codecs.h
PCbuild/pythoncore.vcxproj
PCbuild/pythoncore.vcxproj.filters
setup.py