- 23 Şub, 2005 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 22 Şub, 2005 1 kayıt (commit)
-
-
Michael W. Hudson yazdı
Delete some advice that can never, ever have worked. There are a couple of XXX comments for bits I don't know how to update. It would be really good not to release Python 2.5 with these in place :) This file is way too big. There's basically no chance of it staying up to date.
-
- 21 Şub, 2005 4 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
Add a test in case the underlying assumptions ever change (i.e. the compiler starts generating code blocks that are not punctuated by RETURN_VALUE).
-
Raymond Hettinger yazdı
-
Peter Astrand yazdı
-
- 20 Şub, 2005 5 kayıt (commit)
-
-
Raymond Hettinger yazdı
Afterwards, -0.5 loads in a single step and no longer requires a runtime UNARY_NEGATIVE operation.
-
Raymond Hettinger yazdı
Afterwards, -0.5 loads in a single step and no longer requires a runtime UNARY_NEGATIVE operation.
-
Raymond Hettinger yazdı
* Speed-up str.count() by using memchr() to fly between first char matches.
-
Raymond Hettinger yazdı
* Speed-up "x in y" where x has more than one character. The existing code made excessive calls to the expensive memcmp() function. The new code uses memchr() to rapidly find a start point for memcmp(). In addition to knowing that the first character is a match, the new code also checks that the last character is a match. This significantly reduces the incidence of false starts (saving memcmp() calls and making quadratic behavior less likely). Improves the timings on: python -m timeit -r7 -s"x='a'*1000" "'ab' in x" python -m timeit -r7 -s"x='a'*1000" "'bc' in x" Once this code has proven itself, then string_find_internal() should refer to it rather than running its own version. Also, something similar may apply to unicode objects.
-
Guido van Rossum yazdı
newline.
-
- 19 Şub, 2005 1 kayıt (commit)
-
-
Ka-Ping Yee yazdı
Thanks to Robert Dick <dickrp@ece.northwestern.edu> for reporting this bug and submitting a patch. Adjust doc(object) to display useful documentation for plain values (e.g. help([]) now shows the methods on the list instead of just printing "[]"). (This change has been tested interactively, by generating docs for the standard library, and by running the module documentation webserver.)
-
- 18 Şub, 2005 5 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Walter Dörwald yazdı
and UserString.MutableString.__delitem__.
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
- 17 Şub, 2005 10 kayıt (commit)
-
-
Walter Dörwald yazdı
-
Walter Dörwald yazdı
-
Martin v. Löwis yazdı
Will backport to 2.4.
-
Walter Dörwald yazdı
-
Michael W. Hudson yazdı
[ 1124295 ] Function's __name__ no longer accessible in restricted mode
-
Andrew MacIntyre yazdı
-
Andrew MacIntyre yazdı
-
Andrew MacIntyre yazdı
-
Michael W. Hudson yazdı
[ 1124295 ] Function's __name__ no longer accessible in restricted mode which I introduced with a bit of mindless copy-paste when making __name__ writable. You can't assign to __name__ in restricted mode, which I'm going to pretend was intentional :)
-
Brett Cannon yazdı
Closes bug #1124278.
-
- 16 Şub, 2005 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Brett Cannon yazdı
defined.
-
- 15 Şub, 2005 4 kayıt (commit)
-
-
Tim Peters yazdı
-
Tim Peters yazdı
_some_ user-defined class instance. That it was also an exception isn't interesting, but does interfere with Michael Hudson's new-style exception patch. This just changes the doctest example, to use an instance of a non-exception class.
-
Michael W. Hudson yazdı
broke the "raise SystemExit(46)" case when doing new-style exceptions, but I'd much rather have found out here than in test_tempfile (growl).
-
Michael W. Hudson yazdı
-
- 14 Şub, 2005 1 kayıt (commit)
-
-
Peter Astrand yazdı
Licensed to PSF under a Contributor Agreement.
-
- 13 Şub, 2005 2 kayıt (commit)
-
-
Brett Cannon yazdı
X).
-
Brett Cannon yazdı
9. Applies patch #1095802. Thanks Jack Jansen.
-
- 11 Şub, 2005 1 kayıt (commit)
-
-
Fred Drake yazdı
(closes SF bug #1115989)
-
- 10 Şub, 2005 2 kayıt (commit)
-
-
Brett Cannon yazdı
sanity checks on tzname if HAVE_TZNAME defined. Closes bug #1096244. Thanks Gregory Bond.
-
Brett Cannon yazdı
2.344).
-