- 19 Apr, 2002 11 commits
-
-
Tim Peters authored
+ 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 authored
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 authored
-
Neal Norwitz authored
-
Jeremy Hylton authored
Bug fix by mhammond. Bug fix candidate for 2.2, not present in 2.1.
-
Jack Jansen authored
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 authored
-
Skip Montanaro authored
revealed itself when i added index generating lines to doc/doc.tex)
-
Skip Montanaro authored
add index turds
-
Fred Drake authored
version number, and explain what it is at the top of the chapter. This closes SF bug #225003.
-
Mark Hammond authored
Use try/finally to ensure all Queue locks remain stable. Includes test case. Bugfix candidate.
-
- 18 Apr, 2002 12 commits
-
-
Tim Peters authored
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 authored
doesn't return NULL. PyObject_Realloc: better comment for why we don't call PyObject_Malloc(0).
-
Tim Peters authored
-
Tim Peters authored
a str subclass. test_descr.py/string_exceptions(): New sub-test. For 2.3 only. Guido doesn't want this backported.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
as reported by Eric C. Newton.
-
Martin v. Löwis authored
Will backport to 2.1 and 2.2.
-
Tim Peters authored
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 authored
-
Andrew M. Kuchling authored
-
Guido van Rossum authored
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 authored
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 Apr, 2002 12 commits
-
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
http://www.python.org/sf/536241Walter Dörwald authored
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 authored
-
Marc-André Lemburg authored
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 authored
-
Fred Drake authored
Additional material is still needed in that section.
-
Fred Drake authored
-
Fred Drake authored
dropped in the HTML formatted version. Reported by Mike Coleman.
-
Fred Drake authored
New" document.
-
Fred Drake authored
Add a -r option; if given with a release number, the "What's New" document is included with the relevant version number. Update the text of the README distributed with the PostScript files to reflect the changes in the user organizations in the Python community.
-
Fred Drake authored
index file for the top-level directory. This makes it easier to use an unpacked version of the documentation via file: URLs. This closes SF bug #541257.
-
- 16 Apr, 2002 5 commits
-
-
Fred Drake authored
the documented and undocumented symbols.
-
Tim Peters authored
option. It was the cause of at least one way UNWISE.EXE could vanish (install a python; uninstall it; install it again; reboot the machine; abracadabra the uinstaller is gone). Bugfix candidate, but I'll backport it myself.
-
Fred Drake authored
Avoid adding Python wrappers around the underlying C profiler if possible; the extra layer of calls can lead to confusion in interpreting the logs.
-
Fred Drake authored
-
Fred Drake authored
-