- 20 Eyl, 2003 4 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
if configured --without-threads. Backported to 2.3.
-
- 19 Eyl, 2003 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 17 Eyl, 2003 2 kayıt (commit)
-
-
Thomas Heller yazdı
Will backport to 2.3.
-
Raymond Hettinger yazdı
(Contributed by George Yoshida.)
-
- 16 Eyl, 2003 10 kayıt (commit)
-
-
Raymond Hettinger yazdı
* Reference the doctest.DocTestSuite() conversion tool.
-
Raymond Hettinger yazdı
-
Tim Peters yazdı
so fiddle Jeremy's fix to live with that. Also added more comments. Bugfix candidate (this bug is in all versions of Python, at least since 2.1).
-
Jeremy Hylton yazdı
If a length-1 Unicode string was in the freelist and it was uninitialized or pointed to a very large (magnitude) negative number, the check unicode_latin1[unicode->str[0]] == unicode could cause a segmentation violation, e.g. unicode->str[0] is 0xcbcbcbcb. Fix this in two ways: 1. Change guard befor unicode_latin1[] to test against 256U. If I understand correctly, the unsigned long used to store UCS4 on my box was getting converted to a signed long to compare with the signed constant 256. 2. Change _PyUnicode_New() to make sure the first element of str is always initialized to zero. There are several places in the code where the caller can exit with an error before initializing any of str, which would leave junk in str[0]. Also, silence a compiler warning on pointer vs. int arithmetic. Bug fix candidate.
-
Raymond Hettinger yazdı
hashing a class that does not define __hash__ but does define a comparison.
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Jeremy Hylton yazdı
The unicode_resize() family only returns -1 or 0 so simply checking for != 0 is sufficient, but somewhat unclear. Many Python API functions return < 0 on error, reserving the right to return 0 or 1 on success. Change the call sites for consistency with these calls.
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
-
- 15 Eyl, 2003 4 kayıt (commit)
-
-
Raymond Hettinger yazdı
Will backport to 2.3.1
-
Raymond Hettinger yazdı
Noted that the SHA algorithm is really SHA-1. (Contributed by Ronald Rivest.)
-
Andrew M. Kuchling yazdı
-
Steve Purcell yazdı
Hettinger in comments for issue 804115 https://sourceforge.net/tracker/?func=detail&atid=105470&aid=804115&group_id=5470
-
- 13 Eyl, 2003 4 kayıt (commit)
-
-
Raymond Hettinger yazdı
* Expanded coverage.
-
Raymond Hettinger yazdı
iteritems() is defined.
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 12 Eyl, 2003 4 kayıt (commit)
-
-
Martin v. Löwis yazdı
Backported to 2.3.
-
Martin v. Löwis yazdı
-
Raymond Hettinger yazdı
Add support for the iterator and mapping protocols. For Py2.3, this was done for shelve, dumbdbm and other mapping objects, but not for bsddb and dbhash which were inadvertently missed.
-
Raymond Hettinger yazdı
-
- 11 Eyl, 2003 5 kayıt (commit)
-
-
Fred Drake yazdı
-
Fred Drake yazdı
- removed use of the string module - fixed some broken markup
-
Fred Drake yazdı
- update a couple of URLs to point to more recent portions of python.org
-
Fred Drake yazdı
-
Fred Drake yazdı
little better, with similar spacing characteristics with the seealso environment
-
- 10 Eyl, 2003 6 kayıt (commit)
-
-
Raymond Hettinger yazdı
(Contributed by George Yoshida.)
-
Fred Drake yazdı
- cleaned up some markup
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
-
Brett Cannon yazdı
its first three arguments. Closes RFE #798046 .
-
Skip Montanaro yazdı
-