- 20 Nis, 2002 3 kayıt (commit)
-
-
Tim Peters yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
-
- 19 Nis, 2002 15 kayıt (commit)
-
-
Jeremy Hylton yazdı
SF bug #522264 reported by Evelyn Mitchell. The code included a comment about "STAR STAR" which was translated into the code as the bogus attribute token.STARSTAR. This name never caused an attribute error because it was never retrieved. The code was based on an old version of the grammar that specified kwargs as two tokens ('*' '*'). I checked as far back as 2.1 and didn't find this production. The fix is simple, because token.DOUBLESTAR is the only token allowed. Also update the grammar fragment in com_arglist(). XXX I'll bet lots of other grammar fragments in comments are out of date, probably in this module and in compile.c.
-
Martin v. Löwis yazdı
Will backport to 2.2.
-
Tim Peters yazdı
populate the "stop_list" triple-quoted string with your favorite handful of stop words.
-
Tim Peters yazdı
-
Tim Peters yazdı
+ Increased size of the window the user sees the first time. + Arranged for the display to remember its last size and position. + Added a Favorites (bookmarks) tab. + Added the "Advanced Search" decorations.
-
Tim Peters yazdı
HTML help files (.chm). Obtained from Robin Dunn's packaging of the 2.2 docs at <http://alldunn.com/python/>, obtained in turn from Hernán Martínez Foffani's original work at <http://www.orgmf.com.ar/condor/pytstuff.html>.
-
Tim Peters yazdı
-
Neal Norwitz yazdı
-
Jeremy Hylton yazdı
Bug fix by mhammond. Bug fix candidate for 2.2, not present in 2.1.
-
Jack Jansen yazdı
pymalloc, apparently. Fixed, but this means all bgen-generated modules will have to be re-generated. I hope (and expect) that the pymalloc fixes aren't bugfix candidates, because if they are this is one too.
-
Martin v. Löwis yazdı
-
Skip Montanaro yazdı
revealed itself when i added index generating lines to doc/doc.tex)
-
Skip Montanaro yazdı
add index turds
-
Fred Drake yazdı
version number, and explain what it is at the top of the chapter. This closes SF bug #225003.
-
Mark Hammond yazdı
Use try/finally to ensure all Queue locks remain stable. Includes test case. Bugfix candidate.
-
- 18 Nis, 2002 12 kayıt (commit)
-
-
Tim Peters yazdı
consistency checks, enabled only in a debug (Py_DEBUG) build. Note that this never gets called automatically unless PYMALLOC_DEBUG is #define'd too, and the envar PYTHONMALLOCSTATS exists.
-
Tim Peters yazdı
doesn't return NULL. PyObject_Realloc: better comment for why we don't call PyObject_Malloc(0).
-
Tim Peters yazdı
-
Tim Peters yazdı
a str subclass. test_descr.py/string_exceptions(): New sub-test. For 2.3 only. Guido doesn't want this backported.
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
as reported by Eric C. Newton.
-
Martin v. Löwis yazdı
Will backport to 2.1 and 2.2.
-
Tim Peters yazdı
Close a file before trying to unlink it, and apparently Cygwin needs writes to an mmap'ed file to get flushed before they're visible. Bugfix candidate, but I think only for the 2.2 line (it's testing features that I think were new in 2.2).
-
Tim Peters yazdı
-
Andrew M. Kuchling yazdı
-
Guido van Rossum yazdı
Change type_get_doc (the get function for __doc__) to look in tp_dict more often, and if it finds a descriptor in tp_dict, to call it (with a NULL instance). This means you can add a __doc__ descriptor to a new-style class that returns instance docs when called on an instance, and class docs when called on a class -- or the same docs in either case, but lazily computed. I'll also check this into the 2.2 maintenance branch.
-
Guido van Rossum yazdı
Change type_get_doc (the get function for __doc__) to look in tp_dict more often, and if it finds a descriptor in tp_dict, to call it (with a NULL instance). This means you can add a __doc__ descriptor to a new-style class that returns instance docs when called on an instance, and class docs when called on a class -- or the same docs in either case, but lazily computed. I'll also check this into the 2.2 maintenance branch.
-
- 17 Nis, 2002 10 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
http://www.python.org/sf/536241Walter Dörwald yazdı
If a str or unicode method returns the original object, make sure that for str and unicode subclasses the original will not be returned. This should prevent SF bug http://www.python.org/sf/460020 from reappearing.
-
Marc-André Lemburg yazdı
-
Marc-André Lemburg yazdı
base class (in bdist_packager) and two subclasses which make use of this base class: bdist_pkgtool (for Solaris) and bdist_sdux (for HP-UX).
-
Skip Montanaro yazdı
-
Fred Drake yazdı
Additional material is still needed in that section.
-
Fred Drake yazdı
-
Fred Drake yazdı
dropped in the HTML formatted version. Reported by Mike Coleman.
-
Fred Drake yazdı
New" document.
-