- 12 Dec, 2005 7 commits
-
-
Fredrik Lundh authored
-
Fredrik Lundh authored
-
Fredrik Lundh authored
make sure that all included components work)
-
Fredrik Lundh authored
assorted xml.etree tweaks
-
Fredrik Lundh authored
-
Hye-Shik Chang authored
build problem on AIX.
-
Andrew M. Kuchling authored
-
- 11 Dec, 2005 4 commits
-
-
Neal Norwitz authored
Strip off leading dots and slash so the generated files are the same regardless of whether you configure in the checkout directory or build. If anyone configures in a different directory, we might want a cleaner approach using os.path.*(). Hopefully this is good enough.
-
Neal Norwitz authored
-
Neal Norwitz authored
If a line had multiple semi-colons and ended with a semi-colon, we would loop too many times and access a NULL node. Exit the loop early if there are no more children.
-
Neal Norwitz authored
-
- 10 Dec, 2005 2 commits
-
-
Jeremy Hylton authored
In C++, it's an error to pass a string literal to a char* function without a const_cast(). Rather than require every C++ extension module to put a cast around string literals, fix the API to state the const-ness. I focused on parts of the API where people usually pass literals: PyArg_ParseTuple() and friends, Py_BuildValue(), PyMethodDef, the type slots, etc. Predictably, there were a large set of functions that needed to be fixed as a result of these changes. The most pervasive change was to make the keyword args list passed to PyArg_ParseTupleAndKewords() to be a const char *kwlist[]. One cast was required as a result of the changes: A type object mallocs the memory for its tp_doc slot and later frees it. PyTypeObject says that tp_doc is const char *; but if the type was created by type_new(), we know it is safe to cast to char *.
-
Hye-Shik Chang authored
This enables even impatient people to run tests that require remote files such as test_normalization and test_codecmaps_*.
-
- 08 Dec, 2005 1 commit
-
-
Andrew M. Kuchling authored
-
- 06 Dec, 2005 6 commits
-
-
Skip Montanaro authored
-
Armin Rigo authored
-
Armin Rigo authored
meaningless numbers, but I figured out I would fix that bug anyway.
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Neal Norwitz authored
-
- 05 Dec, 2005 4 commits
-
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Neal Norwitz authored
You apparently can seek(0) on sys.stdin on OS X. But you can't go backwards, so seek(-1).
-
Michael W. Hudson authored
[ 1346144 ] Segfaults from unaligned loads in floatobject.c by using memcpy and not just blinding casting char* to double*. Thanks to Rune Holm for the report.
-
- 04 Dec, 2005 11 commits
-
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
[Bug #1164912] Ensure Datetime wrapper class .value attribute is an 8-bit string, not a Unicode string
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
asked to read tens of megabytes of data. On my Mac, it hits MemoryErrors when reading around 15Mb in one chunk. The fix is to read the body in several parts, not as one big piece. It would be nice to fix the underlying socket.read() problem, too. 2.4 bugfix candidate.
-
Andrew M. Kuchling authored
-
- 02 Dec, 2005 1 commit
-
-
Georg Brandl authored
-
- 01 Dec, 2005 1 commit
-
-
Anthony Baxter authored
-
- 30 Nov, 2005 2 commits
-
-
Walter Dörwald authored
-
Andrew M. Kuchling authored
Remove sorting HOWTO, after converting it to a wiki page at http://wiki.python.org/moin/HowTo/Sorting
-
- 29 Nov, 2005 1 commit
-
-
Martin v. Löwis authored
-