- 01 Mar, 2006 40 commits
-
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Thomas Wouters authored
-
Tim Peters authored
-
Thomas Wouters authored
-
Martin v. Löwis authored
-
Thomas Wouters authored
convince gcc (4.0.x) the variables are never used uninitialized (and raising a proper exception if they ever are.)
-
Thomas Wouters authored
-
Thomas Wouters authored
(PyMarshal_ReadShortFromFile() is only used in zipimport.c, I don't believe the extra initializations will matter one way or another.)
-
Thomas Wouters authored
-
Brett Cannon authored
-
Thomas Wouters authored
everywhere else?)
-
Thomas Wouters authored
-
Thomas Wouters authored
the sentinel value in the main function, rather than the helper. This function could possibly do with an early-out if any of the helper calls ends up with a len of 0, but I doubt it really matters (how common are malformed hangul syllables, really?)
-
Thomas Wouters authored
-
Thomas Wouters authored
-
Martin v. Löwis authored
-
Thomas Wouters authored
-
Martin v. Löwis authored
-
Brett Cannon authored
-
Guido van Rossum authored
exception, it should not be propagated up. With unit tests.
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Jeremy Hylton authored
Much of the peephole optimizer is now indented badly, but it's about to be revised anyway.
-
Jeremy Hylton authored
-
Fredrik Lundh authored
-
Tim Peters authored
and set svn:eol-style to native, on some text files.
-
Tim Peters authored
-
Brett Cannon authored
specified. Hopefully this wll bring warming to Tim's Windows-loving heart.
-
Martin v. Löwis authored
-
Thomas Wouters authored
available %zd format character. Mark with an XXX comment so we can fix this, later.
-
Thomas Wouters authored
-
Thomas Wouters authored
-
Thomas Wouters authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Tim Peters authored
posix__getfullpathname(). In partial answer to the now-deleted XXX comment: /* XXX(twouters) Why use 'et#' here at all? insize isn't used */ `insize` is an input parameter too, and it was left uninitialized, leading to seemingly random failures.
-
Brett Cannon authored
expression for the hell of it.
-
Brett Cannon authored
added message attribute compared to the previous version of Exception. It is also a new-style class, making all exceptions now new-style. KeyboardInterrupt and SystemExit inherit from BaseException directly. String exceptions now raise DeprecationWarning. Applies patch 1104669, and closes bugs 1012952 and 518846.
-