- 15 Mar, 2006 11 kayıt (commit)
-
-
Vinay Sajip yazdı
Catch situations where currentframe() returns None. See SF patch #1447410, this is a different implementation.
-
Nick Coghlan yazdı
-
Andrew M. Kuchling yazdı
-
Walter Dörwald yazdı
of tuple) that provides incremental decoders and encoders (a way to use stateful codecs without the stream API). Functions codecs.getincrementaldecoder() and codecs.getincrementalencoder() have been added.
-
Nick Coghlan yazdı
-
Tim Peters yazdı
unique to Python 2.5.
-
Tim Peters yazdı
C99 "z" qualifier on all platforms.
-
Thomas Heller yazdı
configure step.
-
Walter Dörwald yazdı
after calling close(). Change StringIO, so that it behaves the same way.
-
Neal Norwitz yazdı
Will backport.
-
Guido van Rossum yazdı
(Ideally, all packages in Python 2.5 will use the relative import syntax for all their relative import needs.)
-
- 14 Mar, 2006 7 kayıt (commit)
-
-
Tim Peters yazdı
Since it's never intended that this script be run by regrtest.py, it shouldn't have been named with a "test_" prefix to begin with. A consequence is that we shouldn't see useless: test_hashlib_speed skipped -- not a unit test (stand alone benchmark) lines in regrtest output anymore.
-
Thomas Heller yazdı
using a proper function prototype.
-
Thomas Heller yazdı
-
Thomas Heller yazdı
is responsible for most (all?) of the warnings we get.
-
Thomas Heller yazdı
""" The attached patch fixes all the ctypes tests so they pass on amd64. It also fixes several warnings. I'm not sure what else to do with the patch. Let me know how you want to handle these in the future. I'm not sure the patch is 100% correct. You will need to decide what can be 64 bits and what can't. I believe sq_{item,slice,ass_item,ass_slice} all need to use Py_ssize_t. The types in ctypes.h may not require all the changes I made. I don't know how you want to support older version, so I unconditionally changed the types to Py_ssize_t. """ The patch is also in the ctypes SVN repository now, after small changes to add compatibility with older Python versions.
-
Nick Coghlan yazdı
-
Neal Norwitz yazdı
PyObject_Unicode(). This problem was originally reported from Coverity and addresses mail on python-dev "checkin r43015". This inlines the conversion of the string to unicode and cleans up/simplifies some code at the end of the PyObject_Unicode(). We really need a complete C API test module for all public APIs and passing good and bad parameter values. Will backport.
-
- 13 Mar, 2006 14 kayıt (commit)
-
-
Georg Brandl yazdı
-
Vinay Sajip yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
-
Martin v. Löwis yazdı
Remove remarks on size_t problems.
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Nick Coghlan yazdı
Fix SF bug #1448804 and ad a test to ensure that all subscript operations continue to be handled correctly
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
Make buildbot slaves automatically fetch bzip2 1.0.3.
-
Thomas Heller yazdı
-
Hye-Shik Chang yazdı
SS2 (single-shift 2) escape sequences correctly.
-
Thomas Heller yazdı
Change test_functions.py so that it can be run multiple time without failing: Assign a restype to the function in test_intresult, and move the definition of class POINT to module level so that no new class is created each time the test is run.
-
- 12 Mar, 2006 8 kayıt (commit)
-
-
Trent Mick yazdı
important for the _ssl.vproj build. It calls build_ssl.py which tries to find a Perl to use. Without "/useenv" Visual Studio is getting a PATH from somewhere else (presumably from its internal environment configuration). The result is that build_ssl.py fallsback to its "well-known" locations for a Perl install.
-
Fredrik Lundh yazdı
Fixed a number of potential null-pointer-reference-under-pressure glitches, based on input from the Coverity analysis tool and Simo Salminen.
-
Martin v. Löwis yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
-
Thomas Wouters yazdı
there) - Add missing DECREFs of inner-scope 'temp' variable - Add various missing DECREFs by changing 'return NULL' into 'goto onError' - Avoid double DECREF when last _PyUnicode_Resize() fails Coverity found one of the missing DECREFs, but oddly enough not the others.
-
Thomas Wouters yazdı
between a TestCase instance, the database it opened (or a cursor to a database) and a bound method as a registered database callback, and a lack of GC-handling in bsddb caused the TestCases to linger. Fix the test, for now, as backward compatibility makes adding GC to bsddb annoying.
-
Thomas Wouters yazdı
gcc 4.0.x wasn't complaining about *that* one ;)
-