| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264) | Serhiy Storchaka | 2019-03-13 | 1 | -1/+1 |
|
|
* | bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033) | Zackery Spytz | 2018-12-08 | 1 | -11/+4 |
|
|
* | bpo-28604: Fix localeconv() for different LC_MONETARY (GH-10606) | Victor Stinner | 2018-11-20 | 1 | -16/+93 |
|
|
* | bpo-34485: Enhance init_sys_streams() (GH-8978) | Victor Stinner | 2018-08-28 | 1 | -1/+1 |
|
|
* | bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH... | Siddhesh Poyarekar | 2018-04-29 | 1 | -5/+4 |
|
|
* | bpo-31900: Fix localeconv() encoding for LC_NUMERIC (#4174) | Victor Stinner | 2018-01-15 | 1 | -8/+29 |
|
|
* | bpo-29240: Fix locale encodings in UTF-8 Mode (#5170) | Victor Stinner | 2018-01-15 | 1 | -1/+2 |
|
|
* | [security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302) | Serhiy Storchaka | 2017-06-28 | 1 | -0/+5 |
|
|
* | allow the first call to wcsxfrm to return ERANGE (#536) | Benjamin Peterson | 2017-03-08 | 1 | -1/+1 |
|
|
* | bpo-15954: Check return code of wcsxfrm(). (#508) | Serhiy Storchaka | 2017-03-06 | 1 | -4/+12 |
|
|
* | Issue #28139: Merge indentation fixes from 3.5 into 3.6 | Martin Panter | 2016-09-17 | 1 | -1/+2 |
|\ |
|
| * | Issue #28139: Fix messed up indentation | Martin Panter | 2016-09-17 | 1 | -1/+2 |
|
|
* | | Add NULL checks to the initializer of the locale module | Christian Heimes | 2016-09-08 | 1 | -34/+20 |
|
|
* | | Issue #25923: Added more const qualifiers to signatures of static and private... | Serhiy Storchaka | 2015-12-25 | 1 | -1/+1 |
|/ |
|
* | Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer | Serhiy Storchaka | 2015-02-16 | 1 | -1/+1 |
|
|
* | Cleanup locale.localeconv(): move Py_DECREF() closer to the error | Victor Stinner | 2013-10-29 | 1 | -2/+3 |
|
|
* | Issue #18408: Fix locale.localeconv(), handle PyDict_SetItemString() failure | Victor Stinner | 2013-07-16 | 1 | -16/+20 |
|
|
* | Issue #14909: A number of places were using PyMem_Realloc() apis and | Kristjan Valur Jonsson | 2012-05-31 | 1 | -2/+3 |
|
|
* | PyUnicode_DecodeLocale() second argument is now a char*, no more an int | Victor Stinner | 2012-02-14 | 1 | -10/+10 |
|
|
* | Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale() | Victor Stinner | 2011-12-16 | 1 | -47/+10 |
|
|
* | Remove temporary hacks for the issue #13441 | Victor Stinner | 2011-11-21 | 1 | -46/+0 |
|
|
* | Another temporary hack to debug the issue #13441 | Victor Stinner | 2011-11-21 | 1 | -0/+20 |
|
|
* | Issue #13441: _PyUnicode_CheckConsistency() dumps the string if the maximum | Victor Stinner | 2011-11-21 | 1 | -0/+26 |
|
|
* | Fix a compiler warning in _locale | Victor Stinner | 2011-10-11 | 1 | -1/+1 |
|
|
* | PyLocale_strxfrm() uses the new Unicode API | Victor Stinner | 2011-09-29 | 1 | -24/+15 |
|
|
* | PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject* | Victor Stinner | 2010-10-07 | 1 | -2/+2 |
|
|
* | Issue #9979: Use PyUnicode_AsWideCharString() for _locale.strcoll() | Victor Stinner | 2010-09-29 | 1 | -17/+4 |
|
|
* | Issue 8781: On systems a signed 4-byte wchar_t and a 4-byte Py_UNICODE, use m... | Daniel Stutzbach | 2010-08-24 | 1 | -4/+4 |
|
|
* | locale.bindtextdomain(): use PyUnicode_FSConverter() to parse the filename | Victor Stinner | 2010-06-11 | 1 | -5/+17 |
|
|
* | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -66/+66 |
|
|
* | Merged revisions 76625 via svnmerge from | Amaury Forgeot d'Arc | 2009-12-01 | 1 | -0/+8 |
|
|
* | Only declare variable when it's used. | Georg Brandl | 2009-10-27 | 1 | -0/+2 |
|
|
* | Issue #7080: locale.strxfrm() raises a MemoryError on 64-bit non-Windows | Antoine Pitrou | 2009-10-19 | 1 | -1/+2 |
|
|
* | Merged revisions 74843 via svnmerge from | Mark Dickinson | 2009-09-16 | 1 | -4/+0 |
|
|
* | Fix for issue 6202 | Ronald Oussoren | 2009-06-07 | 1 | -33/+1 |
|
|
* | Issue #6093: Fix off-by-one error in locale.strxfrm. | Martin v. Löwis | 2009-05-23 | 1 | -1/+1 |
|
|
* | Issue #1717, stage 2: remove uses of tp_compare in Modules and most | Mark Dickinson | 2009-02-01 | 1 | -1/+3 |
|
|
* | Issue #3696: Error parsing arguments on OpenBSD <= 4.4 and Cygwin. | Antoine Pitrou | 2008-09-03 | 1 | -0/+8 |
|
|
* | Merged revisions 65012,65035,65037-65040,65048,65057,65077,65091-65095,65097-... | Georg Brandl | 2008-07-23 | 1 | -5/+9 |
|
|
* | Merged revisions 64226 via svnmerge from | Martin v. Löwis | 2008-06-13 | 1 | -1/+1 |
|
|
* | Implement PEP 3121: new module initialization and finalization API. | Martin v. Löwis | 2008-06-11 | 1 | -3/+17 |
|
|
* | Fix another buffer overflow. | Martin v. Löwis | 2008-03-08 | 1 | -1/+1 |
|
|
* | Fix typo in assertion. | Martin v. Löwis | 2008-03-08 | 1 | -1/+1 |
|
|
* | Properly size memory blocks in units of wchar_t. | Martin v. Löwis | 2008-03-08 | 1 | -4/+4 |
|
|
* | Use wchar_t functions in _locale module. | Martin v. Löwis | 2008-03-08 | 1 | -42/+85 |
|
|
* | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i... | Christian Heimes | 2007-12-02 | 1 | -12/+12 |
|
|
* | Get the locale and pwd tests working on the Solaris box where there | Neal Norwitz | 2007-10-27 | 1 | -2/+4 |
|
|
* | Use unicode | Neal Norwitz | 2007-08-26 | 1 | -39/+14 |
|
|
* | Use a newer API for creating the module so we don't have to create | Neal Norwitz | 2007-08-23 | 1 | -5/+1 |
|
|
* | Remove RISCOS support | Skip Montanaro | 2007-08-16 | 1 | -4/+0 |
|
|