- 04 Oct, 2006 7 commits
-
-
Andrew M. Kuchling authored
add 'if (PyErr_Occurred())' checks to various places so that NULL is returned properly. 2.4 backport candidate.
-
Armin Rigo authored
* 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 authored
(unsigned long vs. unsigned int).
-
Martin v. Löwis authored
-
Martin v. Löwis authored
on undefined behaviour of the C compiler anymore. Will backport to 2.5 and 2.4.
-
Jeremy Hylton authored
The compiler was checking that there was something on the fblock stack, but not that there was a loop on the stack. Fixed that and added a test for the specific syntax error. Bug fix candidate.
-
Barry Warsaw authored
test for parts > 3 when we use .split(..., 2).
-
- 03 Oct, 2006 5 commits
-
-
Brett Cannon authored
-
Brett Cannon authored
-
Vinay Sajip authored
-
Vinay Sajip authored
-
Vinay Sajip authored
Documentation omitted the additional parameter to LogRecord.__init__ which was added in 2.5. (See SF #1569622).
-
- 02 Oct, 2006 2 commits
-
-
Martin v. Löwis authored
stdint.h. Will backport.
-
Martin v. Löwis authored
Will backport.
-
- 01 Oct, 2006 2 commits
-
-
Kurt B. Kaiser authored
running w/o subprocess.
-
Kurt B. Kaiser authored
check, resulting in obscure error messages. Do the syntax check first. Bug 1562716, 1562719
-
- 30 Sep, 2006 14 commits
-
-
Georg Brandl authored
-
Georg Brandl authored
string pointed to by its parameter.
-
Georg Brandl authored
to encodings.search_function() contains a dot.
-
Georg Brandl authored
datetime's strftime function.
-
Georg Brandl authored
but also for functions.
-
Georg Brandl authored
keep_blank_values and strict_parsing keyword arguments.
-
Georg Brandl authored
with a slash.
-
Georg Brandl authored
-
Georg Brandl authored
number of arguments, as was the case in Python 2.4.
-
Georg Brandl authored
keyword arguments any more (previously they accepted them, but didn't use them).
-
Georg Brandl authored
GNOME browser in case it is a command with args.
-
Georg Brandl authored
-
Gregory P. Smith authored
-
George Yoshida authored
Will backport to 2.5.
-
- 28 Sep, 2006 1 commit
-
-
Brett Cannon authored
-
- 27 Sep, 2006 2 commits
-
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
- 26 Sep, 2006 1 commit
-
-
Brett Cannon authored
-
- 25 Sep, 2006 1 commit
-
-
Armin Rigo authored
-
- 24 Sep, 2006 3 commits
-
-
Georg Brandl authored
being raised when print_exc() was called without an exception set. In version 2.4, this printed "None", restored that behavior.
-
Georg Brandl authored
not being recognized as a keyword after, e.g., this statement: from __future__ import division, with_statement
-
Georg Brandl authored
-
- 23 Sep, 2006 2 commits
-
-
Brett Cannon authored
hopes that more information will help debug the failing test on HPPA Ubuntu.
-
Neal Norwitz authored
-