summaryrefslogtreecommitdiffstats
path: root/Include/pystrhex.h
Commit message (Collapse)AuthorAgeFilesLines
* bpo-22385: Support output separators in hex methods. (#13578)Gregory P. Smith2019-05-291-0/+3
| | | | | | | | | | | | | | | | | | * bpo-22385: Support output separators in hex methods. Also in binascii.hexlify aka b2a_hex. The underlying implementation behind all hex generation in CPython uses the same pystrhex.c implementation. This adds support to bytes, bytearray, and memoryview objects. The binascii module functions exist rather than being slated for deprecation because they return bytes rather than requiring an intermediate step through a str object. This change was inspired by MicroPython which supports sep in its binascii implementation (and does not yet support the .hex methods). https://bugs.python.org/issue22385
* Issue #26900: Excluded underscored names and other private API from limited API.Serhiy Storchaka2016-09-111-0/+2
|
* Add the files missing from c9f1630cf2b1 for issue9951.Gregory P. Smith2015-04-261-0/+17
hg status should be my friend more often...