- 08 Eki, 2006 5 kayıt (commit)
-
-
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 4 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...
-
Armin Rigo yazdı
(unsigned long vs. unsigned int).
-
Martin v. Löwis yazdı
on undefined behaviour of the C compiler anymore.
-
Barry Warsaw yazdı
test for parts > 3 when we use .split(..., 2).
-
- 02 Eki, 2006 2 kayıt (commit)
-
-
Martin v. Löwis yazdı
stdint.h.
-
Martin v. Löwis yazdı
-
- 30 Eyl, 2006 12 kayıt (commit)
-
-
Georg Brandl yazdı
string pointed to by its parameter. (backport from rev. 52078)
-
Georg Brandl yazdı
to encodings.search_function() contains a dot. (backport from rev. 52075)
-
Georg Brandl yazdı
datetime's strftime function. (backport from rev. 52072)
-
Georg Brandl yazdı
but also for functions. (backport from rev. 52069)
-
Georg Brandl yazdı
with a slash. (backport from rev. 52065)
-
Georg Brandl yazdı
(backport from rev. 52063)
-
Georg Brandl yazdı
number of arguments, as was the case in Python 2.4. (backport from rev. 52061)
-
Georg Brandl yazdı
keyword arguments any more (previously they accepted them, but didn't use them). (backport from rev. 52058)
-
Georg Brandl yazdı
GNOME browser in case it is a command with args. (backport from rev. 52056)
-
Georg Brandl yazdı
(backport from rev. 52053)
-
Gregory P. Smith yazdı
-
George Yoshida yazdı
Since this paragraph is about exception's message attribute(2.5 feature), I will not backport to 2.4 branch.
-
- 27 Eyl, 2006 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
- 25 Eyl, 2006 3 kayıt (commit)
-
-
Georg Brandl yazdı
Bug #1557232: fix seg fault with def f((((x)))) and def f(((x),)). These tests should be improved. Hopefully this fixes variations when flipping back and forth between fpdef and fplist.
-
Georg Brandl yazdı
Fix %zd string formatting on Mac OS X so it prints negative numbers. In addition to testing positive numbers, verify negative numbers work in configure. In order to avoid compiler warnings on OS X 10.4, also change the order of the check for the format character to use (PY_FORMAT_SIZE_T) in the sprintf format for Py_ssize_t. This patch changes PY_FORMAT_SIZE_T from "" to "l" if it wasn't defined at configure time. Need to verify the buildbot results.
-
Georg Brandl yazdı
-
- 24 Eyl, 2006 3 kayıt (commit)
-
-
Georg Brandl yazdı
being raised when print_exc() was called without an exception set. In version 2.4, this printed "None", restored that behavior. (backport from rev. 51995)
-
Georg Brandl yazdı
not being recognized as a keyword after, e.g., this statement: from __future__ import division, with_statement (backport from rev. 51993)
-
Georg Brandl yazdı
(backport from rev. 51991)
-
- 23 Eyl, 2006 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 21 Eyl, 2006 3 kayıt (commit)
-
-
Jack Diederich yazdı
-
Jack Diederich yazdı
* regression bug, count_next was coercing a Py_ssize_t to an unsigned Py_size_t which breaks negative counts * added test for negative numbers
-
Brett Cannon yazdı
-
- 19 Eyl, 2006 1 kayıt (commit)
-
-
Anthony Baxter yazdı
-