- 13 Haz, 2002 10 kayıt (commit)
-
-
Guido van Rossum yazdı
Add a sleep (yuck!) to _testRecvFrom() so the server can set up first.
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
Making the world better a little bit at a time <wink>.
-
Guido van Rossum yazdı
-
Andrew MacIntyre yazdı
-
Andrew MacIntyre yazdı
-
Guido van Rossum yazdı
-
Fred Drake yazdı
constributed by David Abrahams. This closes SF patch #568081.
-
Guido van Rossum yazdı
string with a [::-1] slice.
-
Fred Drake yazdı
Closes SF patch #567867.
-
- 12 Haz, 2002 15 kayıt (commit)
-
-
Guido van Rossum yazdı
using "".join(). Fold a long line.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
nonzero value is OK. Also fixed the error message for this and for testGetSockOpt().
-
Guido van Rossum yazdı
information on what went wrong.
-
Guido van Rossum yazdı
-
Jeremy Hylton yazdı
depends is a list of files that the target depends, but aren't direct sources of the target. think .h files.
-
Guido van Rossum yazdı
settimeout(), test settimeout(None), and the interaction between settimeout() and setblocking().
-
Guido van Rossum yazdı
Changed test_timeout.py to conform to the guidelines in Lib/test/README.
-
Guido van Rossum yazdı
['BINARY_FLOOR_DIVIDE', 'BINARY_TRUE_DIVIDE', 'INPLACE_FLOOR_DIVIDE', 'INPLACE_TRUE_DIVIDE', 'GET_ITER', 'YIELD_VALUE', 'FOR_ITER', 'CONTINUE_LOOP']
-
Guido van Rossum yazdı
of a new-style instance are detected by the garbage collector.
-
Guido van Rossum yazdı
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 yazdı
code is directed to the Shell.
-
- 11 Haz, 2002 9 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Skip Montanaro yazdı
also call using_history() to properly initialize history variables
-
Neal Norwitz yazdı
since the URLopener base class does and **kwargs are used in urlopen.
-
Michael W. Hudson yazdı
slicelength. Include his test case.
-
Guido van Rossum yazdı
-
Michael W. Hudson yazdı
[ 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 yazdı
-
Steven M. Gava yazdı
slightly tweaked and modified for the idlefork config system
-
Fred Drake yazdı
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 Haz, 2002 6 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Greg Ward yazdı
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 yazdı
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 yazdı
keyword args, which are passed directly to the TextWrapper constructor.
-
Greg Ward yazdı
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 yazdı
Fixes SF 564840.
-