summaryrefslogtreecommitdiffstats
path: root/Modules/_localemodule.c
Commit message (Expand)AuthorAgeFilesLines
* PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject*Victor Stinner2010-10-071-2/+2
* Issue #9979: Use PyUnicode_AsWideCharString() for _locale.strcoll()Victor Stinner2010-09-291-17/+4
* Issue 8781: On systems a signed 4-byte wchar_t and a 4-byte Py_UNICODE, use m...Daniel Stutzbach2010-08-241-4/+4
* locale.bindtextdomain(): use PyUnicode_FSConverter() to parse the filenameVictor Stinner2010-06-111-5/+17
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-66/+66
* Merged revisions 76625 via svnmerge fromAmaury Forgeot d'Arc2009-12-011-0/+8
* Only declare variable when it's used.Georg Brandl2009-10-271-0/+2
* Issue #7080: locale.strxfrm() raises a MemoryError on 64-bit non-WindowsAntoine Pitrou2009-10-191-1/+2
* Merged revisions 74843 via svnmerge fromMark Dickinson2009-09-161-4/+0
* Fix for issue 6202Ronald Oussoren2009-06-071-33/+1
* Issue #6093: Fix off-by-one error in locale.strxfrm.Martin v. Löwis2009-05-231-1/+1
* Issue #1717, stage 2: remove uses of tp_compare in Modules and mostMark Dickinson2009-02-011-1/+3
* Issue #3696: Error parsing arguments on OpenBSD <= 4.4 and Cygwin.Antoine Pitrou2008-09-031-0/+8
* Merged revisions 65012,65035,65037-65040,65048,65057,65077,65091-65095,65097-...Georg Brandl2008-07-231-5/+9
* Merged revisions 64226 via svnmerge fromMartin v. Löwis2008-06-131-1/+1
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-3/+17
* Fix another buffer overflow.Martin v. Löwis2008-03-081-1/+1
* Fix typo in assertion.Martin v. Löwis2008-03-081-1/+1
* Properly size memory blocks in units of wchar_t.Martin v. Löwis2008-03-081-4/+4
* Use wchar_t functions in _locale module.Martin v. Löwis2008-03-081-42/+85
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-12/+12
* Get the locale and pwd tests working on the Solaris box where thereNeal Norwitz2007-10-271-2/+4
* Use unicodeNeal Norwitz2007-08-261-39/+14
* Use a newer API for creating the module so we don't have to createNeal Norwitz2007-08-231-5/+1
* Remove RISCOS supportSkip Montanaro2007-08-161-4/+0
* Don't mess with string.letters any more. It is most likely going to disappear.Guido van Rossum2007-08-131-62/+0
* Set sys.stdout.encoding properly.Martin v. Löwis2007-08-111-2/+3
* Merged revisions 55342-55406 via svnmerge fromGuido van Rossum2007-05-171-10/+3
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-1/+1
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-1/+1
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-1/+1
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-1/+1
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-1/+4
* Merge ssize_t branch.Martin v. Löwis2006-02-151-2/+2
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Fix grammatical typo in a comment.Brett Cannon2005-03-011-1/+1
* Correct the handling of 0-termination of PyUnicode_AsWideChar()Marc-André Lemburg2004-11-221-1/+3
* Fix the spelling of Fredrik Lundh's last name (unless there really is aBrett Cannon2004-08-271-1/+1
* This change implements the following gettext features, asGustavo Niemeyer2004-07-221-0/+22
* Moved PyMac_GetScript() to _localemodule, which is the only place whereJack Jansen2004-07-151-2/+26
* Patch #774665: Make Python LC_NUMERIC agnostic.Martin v. Löwis2004-06-081-63/+7
* Bug #920575: Add a workaround for GNU libc nl_langinfo()'s returning NULL.Hye-Shik Chang2004-03-211-2/+6
* Got rid of macglue.h, replacing it by pymactoolbox.h where relevant.Jack Jansen2003-11-201-4/+4
* Getting rid of code dependent on GUSI or the MetroWerks compiler.Jack Jansen2003-11-191-1/+1
* Patch #798145: Return correct information from nl_langinfo(RADIXCHAR).Martin v. Löwis2003-09-041-0/+12
* Use de_DE in example, change message for unknown locale. Fixes #797447.Martin v. Löwis2003-09-031-2/+2
* Fix [ 776721 ] locale.setlocale() leaksMark Hammond2003-07-241-1/+3
* Always initialize Py_FileSystemDefaultEncoding on Unix in Py_Initialize,Martin v. Löwis2003-03-051-20/+0
* Use wcscoll for _locale.strcoll if available.Martin v. Löwis2002-12-211-5/+79
* We need macglue on MacPython-OS9 too.Jack Jansen2002-12-131-1/+1