- 10 Agu, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 09 Agu, 2002 39 kayıt (commit)
-
-
Fred Drake yazdı
on python.org.
-
Fred Drake yazdı
directories clean where the packages are unpacked. Each package now contains a single directory, Python-Docs-<version>/, which contains the files for that version of the documentation. Closes SF feature request #567576.
-
Guido van Rossum yazdı
function name and go to the corresponding entry.
-
Guido van Rossum yazdı
-
Fred Drake yazdı
Part of fixing SF bug #591704.
-
Fred Drake yazdı
Part of fixing SF bug #591704.
-
Fred Drake yazdı
Part of fixing SF bug #591704.
-
Tim Peters yazdı
on Win32, so tests that assume there are such distinctions can't pass. Fiddled them to work.
-
Tim Peters yazdı
-
Guido van Rossum yazdı
for a __del__ attribute, to see if there's a finalizer.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
Weinberg). This changes all uses of deprecated tempfile functions to the recommended ones.
-
Guido van Rossum yazdı
Fred, please review!
-
Guido van Rossum yazdı
rewrite, by Zack Weinberg). This replaces most code in tempfile.py (please review!!!) and adds extensive unit tests for it. This will cause some warnings in the test suite; I'll check those in soon, and also the docs.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
it does for 8-bit strings.
-
Neil Schemenauer yazdı
example of where this changes behavior is when a new-style instance defines '__mul__' and '__rmul__' and is multiplied by an int. Before the change the '__rmul__' method is never called, even if the int is the left operand.
-
Fred Drake yazdı
PyXML 0.8.
-
Jack Jansen yazdı
symlink and remove it.
-
Jack Jansen yazdı
- Pre-cache .rsrc files in Mac subtree after installing - Fixed nameclash in Make variables
-
Jack Jansen yazdı
the applesingle file. - Added optional verbose option for cachersrc tool.
-
Jack Jansen yazdı
similar to compileall.py.
-
Sjoerd Mullender yazdı
-
Sjoerd Mullender yazdı
flag is given (to mimic native Windows).
-
Jack Jansen yazdı
standard lib.
-
Jack Jansen yazdı
in the directories given.
-
Steve Purcell yazdı
versions, since 'repr(new_style_class) != repr(classic_class)'. Suggested by Jeremy Hylton.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Tim Peters yazdı
-
Neal Norwitz yazdı
-
Fred Drake yazdı
-
Guido van Rossum yazdı
trampolining going on with the tp_new descriptor, where the inherited PyType_GenericNew was overwritten with the much slower slot_tp_new which would end up calling tp_new_wrapper which would eventually call PyType_GenericNew. Add a special case for this to update_one_slot(). XXX Hope there isn't a loophole in this. I'll buy the first person to point out a bug in the reasoning a beer. Backport candidate (but I won't do it).
-
Raymond Hettinger yazdı
Closes SF Bug #592573 where inplace add mutated a UserString. Added unittests to verify the bug is cleared.
-
Raymond Hettinger yazdı
tupleobject.c. Makes the code in iterobject.c cleaner and speeds-up the general case by not checking for tuples everytime. SF Patch #592065.
-
Raymond Hettinger yazdı
rather than vereq(). While it was effectively testing regular strings, it ignored the test() function argument when called by test_userstring.py.
-