summaryrefslogtreecommitdiffstats
path: root/Modules/_gestalt.c
Commit message (Collapse)AuthorAgeFilesLines
* Issue #18393: Remove use of deprecated API on OSXRonald Oussoren2013-07-151-84/+0
| | | | | | | | | | | | The "Gestalt" function on OSX is deprecated (starting with OSX 10.8), remove its usage from the stdlib. The patch removes a number of private functions and a private module, but does not change the public API. The removed code was effectively dead, the platform module has used other code to fetch the OSX version for years and could only use on the Gestalt-based code as a fallback. That fallback can only trigger on broken OSX installs (that is, someone has removed parts of the system install)
* 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