- 09 Haz, 2005 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
[Patch #1002763] Allow long ints as terminator values; also, treat a terminator of 0 like the empty string or None
-
- 27 Eyl, 2004 1 kayıt (commit)
-
-
Armin Rigo yazdı
-
- 01 Mar, 2004 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
__getitem__() and __setitem__(). Simplifies the API, reduces the code size, adds flexibility, and makes deques work with bisect.bisect(), random.shuffle(), and random.sample().
-
- 29 Şub, 2004 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
* Add doctests for the examples in the library reference. * Add two methods, left() and right(), modeled after deques in C++ STL. * Apply the new method to asynchat.py. * Add comparison operators to make deques more substitutable for lists. * Replace the LookupErrors with IndexErrors to more closely match lists.
-
- 07 Şub, 2004 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 10 Mar, 2003 2 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
When the null string is used as the terminator, it used to be the same as None, meaning "collect all the data". In the current code, however, it falls into an endless loop; this change reverts to the old behavior.
-
Andrew M. Kuchling yazdı
-
- 30 Haz, 2002 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 16 Nis, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 20 Mar, 2002 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
last Medusa release) Should be safe as a bugfix candidate, though it's not fixing a bug.
-
- 08 Mar, 2002 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
documentation purposes. These implementations are the same as the ones suggested by Skip in the bug report.
-
- 08 Nis, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
http://groups.yahoo.com/group/medusa/message/333 It's clear that Medusa should not be checking for an empty buffer via "buf is ''". The patch merely changes "is" to "==". However, there's a mystery here all the same: Python attempts to store null strings uniquely, so it's unclear why "buf is ''" ever returned false when buf actually was empty. *Some* string operations produce non-unique null strings, e.g. >>> "abc"*0 is "abc"*0 0 >>> but they're rare, and I don't see any such operations in asynchat.
-
- 06 Nis, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
(How many opre of these will we need? :-( )
-
- 05 Nis, 2001 2 kayıt (commit)
-
-
Tim Peters yazdı
-
Tim Peters yazdı
got the order backwards in a line (for .find()).
-
- 09 Şub, 2001 2 kayıt (commit)
-
-
Tim Peters yazdı
-
Eric S. Raymond yazdı
-
- 24 Ock, 2001 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
to find the prefix of strings, thus removing a warning, and simply uses straightforward string slicing.
-
- 14 Ock, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 08 Eyl, 2000 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
(SF patch 101447, fixing PR#113704)
-
- 16 Tem, 2000 1 kayıt (commit)
-
-
Thomas Wouters yazdı
comments, docstrings or error messages. I fixed two minor things in test_winreg.py ("didn't" -> "Didn't" and "Didnt" -> "Didn't"). There is a minor style issue involved: Guido seems to have preferred English grammar (behaviour, honour) in a couple places. This patch changes that to American, which is the more prominent style in the source. I prefer English myself, so if English is preferred, I'd be happy to supply a patch myself ;)
-
- 04 Şub, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
*this* set of patches is Ka-Ping's final sweep: The attached patches update the standard library so that all modules have docstrings beginning with one-line summaries. A new docstring was added to formatter. The docstring for os.py was updated to mention nt, os2, ce in addition to posix, dos, mac.
-
- 14 Eyl, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 08 Haz, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 12 Ock, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
standard Python library. (Async socket support.)
-