[Python-checkins] r54670 - in python/branches/release25-maint: Misc/NEWS Modules/_localemodule.c (original) (raw)

matthias.klose python-checkins at python.org
Tue Apr 3 06:39:36 CEST 2007


Author: matthias.klose Date: Tue Apr 3 06:39:34 2007 New Revision: 54670

Modified: python/branches/release25-maint/Misc/NEWS python/branches/release25-maint/Modules/_localemodule.c Log:

Modified: python/branches/release25-maint/Misc/NEWS

--- python/branches/release25-maint/Misc/NEWS (original) +++ python/branches/release25-maint/Misc/NEWS Tue Apr 3 06:39:34 2007 @@ -220,6 +220,8 @@ - Bug #1633621: if curses.resizeterm() or curses.resize_term() is called, update _curses.LINES, _curses.COLS, curses.LINES and curses.COLS. +- Fix an off-by-one bug in locale.strxfrm(). + Library

Modified: python/branches/release25-maint/Modules/_localemodule.c

--- python/branches/release25-maint/Modules/_localemodule.c (original) +++ python/branches/release25-maint/Modules/_localemodule.c Tue Apr 3 06:39:34 2007 @@ -360,7 +360,7 @@ buf = PyMem_Malloc(n1); if (!buf) return PyErr_NoMemory();



More information about the Python-checkins mailing list