summaryrefslogtreecommitdiffstats
path: root/Modules/_gestalt.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH()Victor Stinner2011-11-211-1/+1
| | | | And PyUnicode_GetSize() => PyUnicode_GetLength()
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-20/+20
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines Untabify C files. Will watch buildbots. ........
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-1/+1
| | | | | | | | | PyUnicode_AsStringAndSize -> _PyUnicode_AsStringAndSize to mark them for interpreter internal use only. We'll have to rework these APIs or create new ones for the purpose of accessing the UTF-8 representation of Unicode objects for 3.1.
* fix compiler warningBenjamin Peterson2008-06-121-1/+1
|
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-2/+14
|
* add the gestalt module back as _gestaltBenjamin Peterson2008-05-291-0/+72