- 18 Nis, 2002 4 kayıt (commit)
-
-
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 12 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.
-
Fred Drake yazdı
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 yazdı
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 Nis, 2002 23 kayıt (commit)
-
-
Fred Drake yazdı
the documented and undocumented symbols.
-
Tim Peters yazdı
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 yazdı
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 yazdı
-
Fred Drake yazdı
-
Guido van Rossum yazdı
PyNumber_InPlaceMultiply insisted on calling sq_inplace_repeat if it existed, even if nb_inplace_multiply also existed and the arguments weren't right for sq_inplace_repeat. Change this to only use sq_inplace_repeat if nb_inplace_multiply isn't defined. Bugfix candidate.
-
Guido van Rossum yazdı
-
Fred Drake yazdı
Small additional changes.
-
Skip Montanaro yazdı
-
Thomas Heller yazdı
full words. Before that, something like 'PyObject_Call' was missed because 'PyObject_CallFunction' was found. Passes PyChecker now.
-
Barry Warsaw yazdı
(or platform independent). Closes SF bug #460357. Bug fix candidate.
-
Martin v. Löwis yazdı
-
Barry Warsaw yazdı
intended whitespace.
-
Guido van Rossum yazdı
have the needed optional Japanese codecs installed.
-
Tim Peters yazdı
tab characters, so reverting the whitespace normalization. Barry, please repair this.
-
Fred Drake yazdı
Closes SF bug #518985.
-
Tim Peters yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
actually does. Note that the description in the Library Reference manual is already accurate. Bugfix candidate.
-
Tim Peters yazdı
order in which the tests are normally run.
-
Tim Peters yazdı
-
Tim Peters yazdı
to keep doing that in every test that wants to filter a warning.
-
- 15 Nis, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
because it *is* skipped. I'm not entirely sure it should be skipped, but figuring that out would take actual thought <wink>.
-