- 22 Haz, 2002 2 kayıt (commit)
-
-
Fred Drake yazdı
This matches the Python C style guide (PEP 7). Closes SF patch #571489.
-
Fred Drake yazdı
Closes SF bug #572169.
-
- 21 Haz, 2002 4 kayıt (commit)
-
-
Jack Jansen yazdı
OSX framework build process. Things fixed/modified: - the filesystem case-sensitivity test now works for builds outside the source directory - various other fixes for building outside the source directory - python.app now has a target in the main Makefile - WASTE and AquaTk are found more automatically
-
Greg Ward yazdı
-
Guido van Rossum yazdı
fixed. (Jeremy, how did you discover that?)
-
Guido van Rossum yazdı
-
- 20 Haz, 2002 18 kayıt (commit)
-
-
Jeremy Hylton yazdı
When resizing a tuple, zero out the memory starting at the end of the old tuple not at the beginning of the old tuple.
-
Jack Jansen yazdı
- These are the final projects that support classic.
-
Raymond Hettinger yazdı
-
Fred Drake yazdı
PyUnicode_Find(). This closes SF bug #566631.
-
Fred Drake yazdı
Closes SF bug #571759.
-
Jack Jansen yazdı
an out-of-memory condition (and a hang on OSX). Filed a bug report (#571845) to make sure this is eventually fixed.
-
Fred Drake yazdı
(which makes it more clear). Closes SF bug #571767.
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
are interpreted. This closes SF bug #532467.
-
Jack Jansen yazdı
-
Fred Drake yazdı
- Include a blank line between the signature line and the description (Guido sez). - Don't include "-> None" for API functions that always return None because they don't have a meaningful return value.
-
Tim Peters yazdı
-
Fred Drake yazdı
actually allows all the legal syntax, and nothing else. Previously, it did not allow a call like func(arg, **dictionary). This closes (again!) SF bug #493243.
-
Raymond Hettinger yazdı
-
Kurt B. Kaiser yazdı
2. Debugger Clear Breakpoints, implement 3. Nice yellow breakpoints for Chui :)
-
Guido van Rossum yazdı
running this as part of the regular test suite again, until I have time to figure out why.
-
Raymond Hettinger yazdı
-
- 19 Haz, 2002 1 kayıt (commit)
-
-
Michael W. Hudson yazdı
http://mail.python.org/pipermail/python-dev/2002-June/025461.html with test cases. Also includes extended slice support for arrays, which I thought I'd already checked in but obviously not.
-
- 18 Haz, 2002 15 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Fred Drake yazdı
(Hanging around small kids too much...;)
-
Fred Drake yazdı
hints about how to work around it. Closes SF bug #530637.
-
Fred Drake yazdı
when used as part of the import statement. Note that both "as" and "None" becoming keywords in the future. Closes SF bug #553262.
-
Jeremy Hylton yazdı
XXX Why doesn't distutils on Windows use the same set of flags as Python?
-
Fred Drake yazdı
Closes SF bug #551912.
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
The default implementation calls _compile() to compile individual files. This method must be implemented by the subclass. This change factors out most of the remaining common code in all the compilers except mwerks.
-
Fred Drake yazdı
might be easier to understand. This relates to SF bug #493243, which will be closed.
-
Jeremy Hylton yazdı
-
Guido van Rossum yazdı
This is his SF patch 569697. I renamed main() to test_main() again so that this is run as part of the standard test suite.
-
Fred Drake yazdı
possible to control the indentation of continuation lines. cfuncline_helper(): Only mark the argument names are <var>, not the whole argument list. This leaves the argument types in the same font as the return type. Based on a casual suggestion from Guido.
-
Fred Drake yazdı
and friends. This was part of the changes to the presentation of signature lines, but does not include any of the aspects that people questioned.
-
Guido van Rossum yazdı
In a fresh interpreter, type.mro(tuple) would segfault, because PyType_Ready() isn't called for tuple yet. To fix, call PyType_Ready(type) if type->tp_dict is NULL.
-