summaryrefslogtreecommitdiff
path: root/Modules/_localemodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #28139: Fix messed up indentationMartin Panter2016-09-171-4/+5
* fix misleading indentation (closes #28139)Benjamin Peterson2016-09-131-17/+17
* Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-161-2/+2
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-78/+78
* #7419: Fix a crash on Windows in locale.setlocale() when the categoryAmaury Forgeot d'Arc2009-12-011-0/+8
* Remove outdated include; this include was breaking OS X builds usingMark Dickinson2009-09-161-4/+0
* backport r73268Benjamin Peterson2009-06-071-33/+1
* #3303: fix crash with invalid Py_DECREF in strcoll().Georg Brandl2008-07-191-1/+3
* #3302: fix segfaults when passing None for arguments that can'tGeorg Brandl2008-07-191-5/+9
* Make more symbols static.Martin v. Löwis2008-06-131-1/+1
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-19/+19
* Renamed PyString to PyBytesChristian Heimes2008-05-261-19/+19
* - Fix an off-by-one bug in locale.strxfrm().Matthias Klose2007-04-031-1/+1
* Patch #1495999: Part two of Windows CE changes.Martin v. Löwis2006-06-101-1/+1
* Make use of METH_O and METH_NOARGS where possible.Georg Brandl2006-05-291-1/+1
* Patch #1492356: Port to Windows CE (patch set 1).Martin v. Löwis2006-05-221-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
* Patch #632973: Implement _getdefaultlocale for OS X.Martin v. Löwis2002-11-261-3/+3
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-1/+1
* WINDOWS_LEAN_AND_MEAN: There is no such symbol, although a very fewTim Peters2002-07-141-1/+1
* Patch #569753: Remove support for WIN16.Martin v. Löwis2002-06-301-3/+3
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-26/+21
* Guard gettext and friends with HAVE_LIBINTL_H. Fixes #549907.Martin v. Löwis2002-05-021-1/+1
* Patch #546194: Check constants individually. Fixes 534143 on OpenBSD.Martin v. Löwis2002-04-191-2/+19
* Expose C library's gettext. Fixes #516412.Martin v. Löwis2002-03-271-2/+96
* Don't imply XPG4 constants from CODESET presence. Fixes #534153.Martin v. Löwis2002-03-271-1/+4
* Remove many uses of PyArg_NoArgs macro, change METH_OLDARGS to METH_NOARGS.Neal Norwitz2002-03-251-11/+5
* Verify arguments for nl_langinfo. Fixes #528879.Martin v. Löwis2002-03-121-84/+106
* sprintf -> PyOS_snprintf in some "obviously safe" cases.Tim Peters2001-11-281-1/+1
* PyLocale_setlocale(): silence compiler warning about free() of a constGuido van Rossum2001-09-201-1/+1
* Patch #449815: Set filesystemencoding based on CODESET.Martin v. Löwis2001-09-051-1/+20
* Fix portability problems with glibc 2.0, as reported in #449157.Martin v. Löwis2001-08-151-0/+3
* _DATE_FMT does not always accompany CODESET.Martin v. Löwis2001-08-101-0/+3
* Expose nl_langinfo through locale where available.Martin v. Löwis2001-08-101-0/+103