- 17 Eki, 2006 4 kayıt (commit)
-
-
Thomas Heller yazdı
Check this and raise an error when something else is used - before this change ctypes would hang or crash when such a callback was called. This is a partial fix for #1574584. Backported from trunk.
-
Martin v. Löwis yazdı
- Bug #1578513: Cross compilation was broken by a change to configure. Repair so that it's back to how it was in 2.4.3.
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
- 15 Eki, 2006 5 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
to CRLF instead.
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
files in VC7.1 pythoncore.vcproj.
-
- 12 Eki, 2006 11 kayıt (commit)
-
-
Georg Brandl yazdı
(backport from rev. 52313)
-
Georg Brandl yazdı
(backport from rev. 52311)
-
Georg Brandl yazdı
about the case of filenames. (backport from rev. 52309)
-
Georg Brandl yazdı
(bug #1556261). (backport from rev. 52307)
-
Georg Brandl yazdı
embedded in the string to convert. (backport from rev. 52305)
-
Georg Brandl yazdı
(backport from rev. 52303)
-
Georg Brandl yazdı
arguments with the system default encoding just like the write() method does, instead of converting it to a raw buffer. (backport from rev. 52301)
-
Georg Brandl yazdı
in inspect.findsource(). (backport from rev. 52299)
-
Georg Brandl yazdı
(backport from rev. 52297)
-
Georg Brandl yazdı
is started with that option. (backport from rev. 52295)
-
Georg Brandl yazdı
(backport from rev. 52293)
-
- 10 Eki, 2006 1 kayıt (commit)
-
-
Ronald Oussoren yazdı
-
- 09 Eki, 2006 4 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Barry Warsaw yazdı
-
Georg Brandl yazdı
(backport from rev. 52251)
-
Andrew M. Kuchling yazdı
-
- 08 Eki, 2006 9 kayıt (commit)
-
-
Ronald Oussoren yazdı
-
Ronald Oussoren yazdı
-
Skip Montanaro yazdı
-
Ronald Oussoren yazdı
-
Ronald Oussoren yazdı
-
Ronald Oussoren yazdı
-
Hye-Shik Chang yazdı
Bug #1572832: fix a bug in ISO-2022 codecs which may cause segfault when encoding non-BMP unicode characters. (Submitted by Ray Chason)
-
Georg Brandl yazdı
(backport from rev. 52129)
-
Georg Brandl yazdı
(backport from rev. 51439)
-
- 07 Eki, 2006 1 kayıt (commit)
-
-
Kristján Valur Jónsson yazdı
Backport the .sln and .vcproj files for PCBuild8 from the python trunk to the 2.5 maintainance branch. This fixes build problems with visual studio 2005, and cleans up profile guided optimization.
-
- 06 Eki, 2006 3 kayıt (commit)
-
-
Georg Brandl yazdı
-
Andrew M. Kuchling yazdı
-
Fred Drake yazdı
- remove Sleepycat name now that they have been bought
-
- 05 Eki, 2006 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
with this change.] Cause a PyObject_Malloc() failure to trigger a MemoryError, and then add 'if (PyErr_Occurred())' checks to various places so that NULL is returned properly.
-
- 04 Eki, 2006 1 kayıt (commit)
-
-
Armin Rigo yazdı
* unified the way intobject, longobject and mystrtoul handle values around -sys.maxint-1. * in general, trying to entierely avoid overflows in any computation involving signed ints or longs is extremely involved. Fixed a few simple cases where a compiler might be too clever (but that's all guesswork). * more overflow checks against bad data in marshal.c. * 2.5 specific: fixed a number of places that were still confusing int and Py_ssize_t. Some of them could potentially have caused "real-world" breakage. * list.pop(x): fixing overflow issues on x was messy. I just reverted to PyArg_ParseTuple("n"), which does the right thing. (An obscure test was trying to give a Decimal to list.pop()... doesn't make sense any more IMHO) * trying to write a few tests...
-