summaryrefslogtreecommitdiff
path: root/Modules/_localemodule.c
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264). (...Serhiy Storchaka2019-03-141-1/+1
* bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033)Miss Islington (bot)2018-12-081-11/+4
* bpo-28604: Fix localeconv() for different LC_MONETARY (GH-10606) (GH-10619)Victor Stinner2018-11-201-6/+85
* bpo-31900: Fix localeconv() encoding for LC_NUMERIC (#4174)Victor Stinner2018-01-151-8/+29
* bpo-29240: Fix locale encodings in UTF-8 Mode (#5170)Victor Stinner2018-01-151-1/+2
* [security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302)Serhiy Storchaka2017-06-281-0/+5
* allow the first call to wcsxfrm to return ERANGE (#536)Benjamin Peterson2017-03-071-1/+1
* bpo-15954: Check return code of wcsxfrm(). (#508)Serhiy Storchaka2017-03-061-4/+12
* Issue #28139: Merge indentation fixes from 3.5 into 3.6Martin Panter2016-09-171-1/+2
|\
| * Issue #28139: Fix messed up indentationMartin Panter2016-09-171-1/+2
* | Add NULL checks to the initializer of the locale moduleChristian Heimes2016-09-091-34/+20
* | Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka2015-12-251-1/+1
|/
* Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-161-1/+1
* Cleanup locale.localeconv(): move Py_DECREF() closer to the errorVictor Stinner2013-10-291-2/+3
* Issue #18408: Fix locale.localeconv(), handle PyDict_SetItemString() failureVictor Stinner2013-07-171-16/+20
* Issue #14909: A number of places were using PyMem_Realloc() apis andKristjan Valur Jonsson2012-05-311-2/+3
* PyUnicode_DecodeLocale() second argument is now a char*, no more an intVictor Stinner2012-02-141-10/+10
* Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale()Victor Stinner2011-12-161-47/+10
* Remove temporary hacks for the issue #13441Victor Stinner2011-11-211-46/+0
* Another temporary hack to debug the issue #13441Victor Stinner2011-11-211-0/+20
* Issue #13441: _PyUnicode_CheckConsistency() dumps the string if the maximumVictor Stinner2011-11-211-0/+26
* Fix a compiler warning in _localeVictor Stinner2011-10-111-1/+1
* PyLocale_strxfrm() uses the new Unicode APIVictor Stinner2011-09-291-24/+15
* 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