- 16 Mar, 2006 12 kayıt (commit)
-
-
Thomas Heller yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
The pre module has been gone for a while. Need to go through and find other modules that no longer exists, since errors are silently ignored.
-
Tim Peters yazdı
-
Tim Peters yazdı
stale .pyc files.
-
Tim Peters yazdı
This is a heavily altered derivative of SF patch 1123430, Evan Jones's heroic effort to make obmalloc return unused arenas to the system free(), with some heuristic strategies to make it more likley that arenas eventually _can_ be freed.
-
- 15 Mar, 2006 19 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Walter Dörwald yazdı
-
Walter Dörwald yazdı
now if close() has been called before (like file and StringIO.StringIO do)
-
Thomas Heller yazdı
versions.
-
Tim Peters yazdı
-
Walter Dörwald yazdı
-
Nick Coghlan yazdı
-
Nick Coghlan yazdı
-
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 2 kayıt (commit)
-
-
Georg Brandl yazdı
-
Vinay Sajip yazdı
-