[issue1016] [PATCH] Updated fix for string to unicode fixes in time and datetime

2007-09-02 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue1016] [PATCH] Updated fix for string to unicode fixes in time and datetime

2007-08-29 Thread Guido van Rossum
Guido van Rossum added the comment: The issue in datetimemodule.c was already fixed. The fix to timemodule.c is wrong -- when there are non-ASCII characters in the unicode string, the length of the UTF-8 conversion is not equal to that of the original Unicode string. -- nosy: +gvanrossu

[issue1016] [PATCH] Updated fix for string to unicode fixes in time and datetime

2007-08-24 Thread Ero Carrera
New submission from Ero Carrera: Small patch for the references leak in datetime and changed a strlen to PyUnicode_GET_SIZE() in time -- files: time_datetime_pystring_patch_2.diff messages: 55279 nosy: ero.carrera severity: normal status: open title: [PATCH] Updated fix for string to uni