Files
cpython/Modules
Just van Rossum 9a3129c148 Fix for bug #661136
Lesson learned: kids should not be allowed to use API's starting
with an underscore :-/
zipimport in 2.3a1 is even more broken than I thought: I attemped
to _PyString_Resize a string created by PyString_FromStringAndSize,
which fails for strings with length 0 or 1 since the latter returns
an interned string in those cases. This would cause a SystemError
with empty source files (and no matching pyc) in the zip archive.
I rewrote the offending code to simply allocate a new buffer and
avoid _PyString_Resize altogether.
Added a test that would've caught the problem.
2003-01-03 11:18:56 +00:00
..
2002-12-06 12:48:53 +00:00
2002-07-17 16:30:39 +00:00
2002-07-17 16:30:39 +00:00
2002-11-09 19:54:06 +00:00
2002-12-06 12:48:53 +00:00
2002-12-06 12:48:53 +00:00
2002-11-08 12:53:11 +00:00
2002-12-30 16:25:41 +00:00
2002-08-07 16:21:51 +00:00
2002-12-30 22:08:05 +00:00
2002-10-30 21:08:34 +00:00
2002-07-17 16:30:39 +00:00
2002-12-07 14:56:36 +00:00
2003-01-03 11:18:56 +00:00