| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Don't mess with string.letters any more. It is most likely going to disappear. | Guido van Rossum | 2007-08-13 | 1 | -62/+0 |
|
|
* | Set sys.stdout.encoding properly. | Martin v. Löwis | 2007-08-11 | 1 | -2/+3 |
|
|
* | Merged revisions 55342-55406 via svnmerge from | Guido van Rossum | 2007-05-17 | 1 | -10/+3 |
|
|
* | Get rid of all #ifdef Py_USING_UNICODE (it is always present now). | Guido van Rossum | 2007-05-03 | 1 | -1/+1 |
|
|
* | Merged revisions 53952-54987 via svnmerge from | Guido van Rossum | 2007-04-27 | 1 | -1/+1 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -1/+1 |
|
|
* | Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn | Thomas Wouters | 2006-06-08 | 1 | -1/+1 |
|
|
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 1 | -1/+4 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -2/+2 |
|
|
* | Check return result from Py_InitModule*(). This API can fail. | Neal Norwitz | 2006-01-19 | 1 | -0/+2 |
|
|
* | Fix grammatical typo in a comment. | Brett Cannon | 2005-03-01 | 1 | -1/+1 |
|
|
* | Correct the handling of 0-termination of PyUnicode_AsWideChar() | Marc-André Lemburg | 2004-11-22 | 1 | -1/+3 |
|
|
* | Fix the spelling of Fredrik Lundh's last name (unless there really is a | Brett Cannon | 2004-08-27 | 1 | -1/+1 |
|
|
* | This change implements the following gettext features, as | Gustavo Niemeyer | 2004-07-22 | 1 | -0/+22 |
|
|