Move the bytes_methods.h header file to the internal C API as pycore_bytes_methods.h: it only contains private symbols (prefixed by "_Py"), except of the PyDoc_STRVAR_shared() macro.
Codecov Report
@@ Coverage Diff @@
## master #18492 +/- ##
===========================================
+ Coverage 82.11% 83.19% +1.08%
===========================================
Files 1956 1571 -385
Lines 589183 414643 -174540
Branches 44448 44449 +1
===========================================
- Hits 483833 344981 -138852
+ Misses 95701 60016 -35685
+ Partials 9649 9646 -3
Continue to review full report at Codecov.
|
bpo-35081: Move bytes_methods.h to the internal C API (pythonGH-18492)
Move the bytes_methods.h header file to the internal C API as
pycore_bytes_methods.h: it only contains private symbols (prefixed by
"_Py"), except of the PyDoc_STRVAR_shared() macro.
https://bugs.python.org/issue35081