aboutsummaryrefslogtreecommitdiff
path: root/Modules/_localemodule.c
AgeCommit message (Expand)Author
2018-01-15bpo-31900: Fix localeconv() encoding for LC_NUMERIC (#4174)Victor Stinner
2018-01-15bpo-29240: Fix locale encodings in UTF-8 Mode (#5170)Victor Stinner
2017-06-28[security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302)Serhiy Storchaka
2017-03-07allow the first call to wcsxfrm to return ERANGE (#536)Benjamin Peterson
2017-03-06bpo-15954: Check return code of wcsxfrm(). (#508)Serhiy Storchaka
2016-09-17Issue #28139: Merge indentation fixes from 3.5 into 3.6Martin Panter
2016-09-17Issue #28139: Fix messed up indentationMartin Panter
2016-09-09Add NULL checks to the initializer of the locale moduleChristian Heimes
2015-12-25Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka
2015-02-16Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka
2013-10-29Cleanup locale.localeconv(): move Py_DECREF() closer to the errorVictor Stinner
2013-07-17Issue #18408: Fix locale.localeconv(), handle PyDict_SetItemString() failureVictor Stinner
2012-05-31Issue #14909: A number of places were using PyMem_Realloc() apis andKristjan Valur Jonsson
2012-02-14PyUnicode_DecodeLocale() second argument is now a char*, no more an intVictor Stinner
2011-12-16Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale()Victor Stinner
2011-11-21Remove temporary hacks for the issue #13441Victor Stinner
2011-11-21Another temporary hack to debug the issue #13441Victor Stinner
2011-11-21Issue #13441: _PyUnicode_CheckConsistency() dumps the string if the maximumVictor Stinner
2011-10-11Fix a compiler warning in _localeVictor Stinner
2011-09-29PyLocale_strxfrm() uses the new Unicode APIVictor Stinner
2010-10-07PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject*Victor Stinner
2010-09-29Issue #9979: Use PyUnicode_AsWideCharString() for _locale.strcoll()Victor Stinner
2010-08-24Issue 8781: On systems a signed 4-byte wchar_t and a 4-byte Py_UNICODE, use m...Daniel Stutzbach
2010-06-11locale.bindtextdomain(): use PyUnicode_FSConverter() to parse the filenameVictor Stinner
2010-05-09Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou
2009-12-01Merged revisions 76625 via svnmerge fromAmaury Forgeot d'Arc
2009-10-27Only declare variable when it's used.Georg Brandl
2009-10-19Issue #7080: locale.strxfrm() raises a MemoryError on 64-bit non-WindowsAntoine Pitrou
2009-09-16Merged revisions 74843 via svnmerge fromMark Dickinson
2009-06-07Fix for issue 6202Ronald Oussoren
2009-05-23Issue #6093: Fix off-by-one error in locale.strxfrm.Martin v. Löwis
2009-02-01Issue #1717, stage 2: remove uses of tp_compare in Modules and mostMark Dickinson
2008-09-03Issue #3696: Error parsing arguments on OpenBSD <= 4.4 and Cygwin.Antoine Pitrou
2008-07-23Merged revisions 65012,65035,65037-65040,65048,65057,65077,65091-65095,65097-...Georg Brandl
2008-06-13Merged revisions 64226 via svnmerge fromMartin v. Löwis
2008-06-11Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis
2008-03-08Fix another buffer overflow.Martin v. Löwis
2008-03-08Fix typo in assertion.Martin v. Löwis
2008-03-08Properly size memory blocks in units of wchar_t.Martin v. Löwis
2008-03-08Use wchar_t functions in _locale module.Martin v. Löwis
2007-12-02Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes
2007-10-27Get the locale and pwd tests working on the Solaris box where thereNeal Norwitz
2007-08-26Use unicodeNeal Norwitz
2007-08-23Use a newer API for creating the module so we don't have to createNeal Norwitz
2007-08-16Remove RISCOS supportSkip Montanaro
2007-08-13Don't mess with string.letters any more. It is most likely going to disappear.Guido van Rossum
2007-08-11Set sys.stdout.encoding properly.Martin v. Löwis
2007-05-17Merged revisions 55342-55406 via svnmerge fromGuido van Rossum
2007-05-03Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum
2007-04-27Merged revisions 53952-54987 via svnmerge fromGuido van Rossum