- 10 Aug, 2002 2 commits
-
-
Tim Peters authored
before %sort was introduced. Redid them (the numbers change, but the conclusions don't). Also did the samplesort counts with the released 2.2.1, as they're slightly different under the last CVS 2.3 samplesort (some higher, some lower -- CVS had been changed to stop doing the special-case business on recursive samplesort calls).
-
Guido van Rossum authored
-
- 09 Aug, 2002 38 commits
-
-
Fred Drake authored
on python.org.
-
Fred Drake authored
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 authored
function name and go to the corresponding entry.
-
Guido van Rossum authored
-
Fred Drake authored
Part of fixing SF bug #591704.
-
Fred Drake authored
Part of fixing SF bug #591704.
-
Fred Drake authored
Part of fixing SF bug #591704.
-
Tim Peters authored
on Win32, so tests that assume there are such distinctions can't pass. Fiddled them to work.
-
Tim Peters authored
-
Guido van Rossum authored
for a __del__ attribute, to see if there's a finalizer.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
Weinberg). This changes all uses of deprecated tempfile functions to the recommended ones.
-
Guido van Rossum authored
Fred, please review!
-
Guido van Rossum authored
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 authored
-
Guido van Rossum authored
-
Guido van Rossum authored
it does for 8-bit strings.
-
Neil Schemenauer authored
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 authored
PyXML 0.8.
-
Jack Jansen authored
symlink and remove it.
-
Jack Jansen authored
- Pre-cache .rsrc files in Mac subtree after installing - Fixed nameclash in Make variables
-
Jack Jansen authored
the applesingle file. - Added optional verbose option for cachersrc tool.
-
Jack Jansen authored
similar to compileall.py.
-
Sjoerd Mullender authored
-
Sjoerd Mullender authored
flag is given (to mimic native Windows).
-
Jack Jansen authored
standard lib.
-
Jack Jansen authored
in the directories given.
-
Steve Purcell authored
versions, since 'repr(new_style_class) != repr(classic_class)'. Suggested by Jeremy Hylton.
-
Jack Jansen authored
-
Jack Jansen authored
-
Tim Peters authored
-
Neal Norwitz authored
-
Fred Drake authored
-
Guido van Rossum authored
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 authored
Closes SF Bug #592573 where inplace add mutated a UserString. Added unittests to verify the bug is cleared.
-
Raymond Hettinger authored
tupleobject.c. Makes the code in iterobject.c cleaner and speeds-up the general case by not checking for tuples everytime. SF Patch #592065.
-