- 13 Jun, 2002 4 commits
-
-
Guido van Rossum authored
-
Fred Drake authored
constributed by David Abrahams. This closes SF patch #568081.
-
Guido van Rossum authored
string with a [::-1] slice.
-
Fred Drake authored
Closes SF patch #567867.
-
- 12 Jun, 2002 15 commits
-
-
Guido van Rossum authored
using "".join(). Fold a long line.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
nonzero value is OK. Also fixed the error message for this and for testGetSockOpt().
-
Guido van Rossum authored
information on what went wrong.
-
Guido van Rossum authored
-
Jeremy Hylton authored
depends is a list of files that the target depends, but aren't direct sources of the target. think .h files.
-
Guido van Rossum authored
settimeout(), test settimeout(None), and the interaction between settimeout() and setblocking().
-
Guido van Rossum authored
Changed test_timeout.py to conform to the guidelines in Lib/test/README.
-
Guido van Rossum authored
['BINARY_FLOOR_DIVIDE', 'BINARY_TRUE_DIVIDE', 'INPLACE_FLOOR_DIVIDE', 'INPLACE_TRUE_DIVIDE', 'GET_ITER', 'YIELD_VALUE', 'FOR_ITER', 'CONTINUE_LOOP']
-
Guido van Rossum authored
of a new-style instance are detected by the garbage collector.
-
Guido van Rossum authored
This was a simple typo. Strange that the compiler didn't catch it! Instead of WHY_CONTINUE, two tests used CONTINUE_LOOP, which isn't a why_code at all, but an opcode; but even though 'why' is declared as an enum, comparing it to an int is apparently not even worth a warning -- not in gcc, and not in VC++. :-( Will fix in 2.2 too.
-
Kurt B. Kaiser authored
code is directed to the Shell.
-
- 11 Jun, 2002 9 commits
-
-
Guido van Rossum authored
-
Skip Montanaro authored
also call using_history() to properly initialize history variables
-
Neal Norwitz authored
since the URLopener base class does and **kwargs are used in urlopen.
-
Michael W. Hudson authored
slicelength. Include his test case.
-
Guido van Rossum authored
-
Michael W. Hudson authored
[ 400998 ] experimental support for extended slicing on lists somewhat spruced up and better tested than it was when I wrote it. Includes docs & tests. The whatsnew section needs expanding, and arrays should support extended slices -- later.
-
Martin v. Löwis authored
-
Steven M. Gava authored
slightly tweaked and modified for the idlefork config system
-
Fred Drake authored
the semantics and presentation used in the library reference. Added an explanation of the use of [...] to denote optional arguments, since this is the only use of this in a signature line. Closes SF bug #567127.
-
- 10 Jun, 2002 12 commits
-
-
Guido van Rossum authored
-
Greg Ward authored
transformed them into the initial_indent and subsequent_indent instance attributes. Now they actually work as advertised, ie. they are accounted for in the width of each output line. Plus you can use them with wrap() as well as fill(), and fill() went from simple-and-broken to trivial-and-working.
-
Guido van Rossum authored
metaclasses. This is essentially the same problem as that reported in bug 494904 for pickle: deepcopy should treat instances of custom metaclasses the same way it treats instances of type 'type'. Bugfix candidate.
-
Greg Ward authored
keyword args, which are passed directly to the TextWrapper constructor.
-
Greg Ward authored
and fill() methods. Keep interface of existing wrap() and fill() functions by going back to having them construct a new TextWrapper instance on each call, with the preferred width passed to the constructor.
-
Thomas Heller authored
Fixes SF 564840.
-
Guido van Rossum authored
The WeakKeyDictionary constructor didn't work when a dict arg was given. Fixed by moving a line. Also adding a unit test. Bugfix candidate.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
The file returned by tmpfile() has mode w+b, so use that in the call to PyFile_FromFile(). Bugfix candidate.
-
Andrew M. Kuchling authored
Add a reminder
-
Guido van Rossum authored
-