Petr Viktorin
|
204946986f
|
bpo-46613: Add PyType_GetModuleByDef to the public API (GH-31081)
* Make PyType_GetModuleByDef public (remove underscore)
Co-authored-by: Victor Stinner <vstinner@python.org>
|
2022-02-11 17:22:11 +01:00 |
Victor Stinner
|
713bb19356
|
bpo-45434: Mark the PyTokenizer C API as private (GH-28924)
Rename PyTokenize functions to mark them as private:
* PyTokenizer_FindEncodingFilename() => _PyTokenizer_FindEncodingFilename()
* PyTokenizer_FromString() => _PyTokenizer_FromString()
* PyTokenizer_FromFile() => _PyTokenizer_FromFile()
* PyTokenizer_FromUTF8() => _PyTokenizer_FromUTF8()
* PyTokenizer_Free() => _PyTokenizer_Free()
* PyTokenizer_Get() => _PyTokenizer_Get()
Remove the unused PyTokenizer_FindEncoding() function.
import.c: remove unused #include "errcode.h".
|
2021-10-13 17:22:14 +02:00 |
Serhiy Storchaka
|
a5a56154f1
|
Remove trailing spaces. (GH-28706)
|
2021-10-03 16:58:14 +03:00 |
Pablo Galindo Salgado
|
214c2e5d91
|
Format the Python-tokenize module and fix exit path (GH-27935)
|
2021-08-25 14:41:14 +02:00 |
Pablo Galindo Salgado
|
a24676bedc
|
Add tests for the C tokenizer and expose it as a private module (GH-27924)
|
2021-08-24 17:50:05 +01:00 |