- 28 Eki, 2003 5 kayıt (commit)
-
-
Skip Montanaro yazdı
-
Armin Rigo yazdı
Added dis.findlinestarts(). SF bug 811294
-
Armin Rigo yazdı
SF bug 793822
-
Armin Rigo yazdı
SF patch 825639 http://mail.python.org/pipermail/python-dev/2003-October/039445.html
-
Raymond Hettinger yazdı
-
- 27 Eki, 2003 6 kayıt (commit)
-
-
Raymond Hettinger yazdı
Document the correct definition of os.path.getctime()
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
Fix inaccuracy: all entities from XHTML 1.0 are supported (according to text further down in this file)
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
Backported to 2.3.
-
Raymond Hettinger yazdı
had slightly different error messages.
-
- 26 Eki, 2003 5 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Steve Purcell yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
* tee object is no longer subclassable * independent iterators renamed to "itertools.tee_iterator" * fixed doc string typo and added entry in the module doc string
-
Steve Purcell yazdı
* Fixed typo in docstring for 'failUnlessAlmostEqual()' * Removed unnecessary use of 'float()' for time values. * Removed apparently unnecessary import of unittest. At some point in the distant past I believe it was necessary otherwise the 'TestCase' that a module saw was not the same as the 'TestCase' seen within 'unittest', and the user's TestCase subclasses were not recognised as subclasses of the TestCase seen within unittest. Seems not to be necessary now.
-
- 25 Eki, 2003 8 kayıt (commit)
-
-
Alex Martelli yazdı
alone, because there can be no guarantee re the semantics of += vs + .
-
Armin Rigo yazdı
no-cyclic-comparison patch at the same time as errors.c. Reverting ceval.c to the previous revision.
-
Armin Rigo yazdı
-
Neal Norwitz yazdı
-
Alex Martelli yazdı
-
Alex Martelli yazdı
a performance bug in sum(manylists)), same as in 2.3 maintenance branch.
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
* Add error checking code to PyList_Append() call. * Replace PyObject_CallMethod(to->outbasket, "pop", NULL) with equivalent in-line code. Inlining is important here because the search for the pop method will occur for every element returned by the iterator. * Make tee's dealloc() a little smarter. If the trailing iterator is being deallocated, then the queue data is no longer needed and can be freed.
-
- 24 Eki, 2003 7 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Andrew M. Kuchling yazdı
[Patch #772077 from Tim Rice] Fix for compiling the readline module on UnixWare; fix goofy comment indent. 2.3 bugfix candidate
-
Andrew M. Kuchling yazdı
[Bug #822668] tarfile raises an exception if the tarfile is gzipped and is too large; the gzip filesize should be written out mod 2**32. (Reported by Johan Fredrik Ohman)
-
Armin Rigo yazdı
-
Walter Dörwald yazdı
charmaptranslate_makespace() allocated more memory than required for the next replacement but didn't remember that fact, so memory size was growing exponentially every time a replacement string is longer that one character. This fixes SF bug #828737.
-
Raymond Hettinger yazdı
It works like the pure python verion except: * it stops storing data after of the iterators gets deallocated * the data queue is implemented with two stacks instead of one dictionary.
-
- 23 Eki, 2003 4 kayıt (commit)
-
-
Guido van Rossum yazdı
struct_pwent; this has been renamed to struct_passwd. (The old name is still supported for backwards compatibility.)
-
Andrew M. Kuchling yazdı
-
Martin v. Löwis yazdı
Backported to 2.3.
-
Fred Drake yazdı
since this gets asked at the docs at python.org address a lot - fix some minor style violations and inconsistencies
-
- 22 Eki, 2003 5 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Raymond Hettinger yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
[Part of patch #648322] Delete the poll2() function, which uses a 'poll' extension module that was once part of Medusa. Contributed by Kjetil Jacobsen
-
Andrew M. Kuchling yazdı
-