summaryrefslogtreecommitdiffstats
path: root/Modules/_testlimitedcapi/bytes.c
Commit message (Collapse)AuthorAgeFilesLines
* gh-116417: Fix WASI build of _testlimitedcapi (#116974)Victor Stinner2024-03-181-1/+1
| | | | Use different function names between _testcapi and _testlimitedcapi to not confuse the WASI linker.
* gh-116417: Move 4 limited C API test files to _testlimitedcapi (#116571)Victor Stinner2024-03-111-0/+255
Move the following files from Modules/_testcapi/ to Modules/_testlimitedcapi/: * bytearray.c * bytes.c * pyos.c * sys.c Changes: * Replace PyBytes_AS_STRING() with PyBytes_AsString(). * Replace PyBytes_GET_SIZE() with PyBytes_Size(). * Update related test_capi tests. * Copy Modules/_testcapi/util.h to Modules/_testlimitedcapi/util.h.