- 03 Mar, 2005 12 commits
-
-
Martin v. Löwis authored
profile.py if available.
-
Martin v. Löwis authored
file size.
-
Martin v. Löwis authored
-
Martin v. Löwis authored
in LWPCookieJar. Backported to 2.4.
-
Martin v. Löwis authored
Backported to 2.4.
-
Martin v. Löwis authored
-
Martin v. Löwis authored
Backported to 2.4.
-
Martin v. Löwis authored
Backported to 2.4.
-
Martin v. Löwis authored
Partially fixes #1110242.
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Brett Cannon authored
with || expressions. Also clarifies intend of 'if' conditional.
-
- 02 Mar, 2005 3 commits
-
-
Raymond Hettinger authored
-
Piers Lauder authored
Fix bug in InternalDate regexp that failed to allow leading 0 in day - courtesy of Rimon Barr <rimon.barr@cornell.edu>
-
Skip Montanaro authored
field on systems that support shadow passwords.
-
- 01 Mar, 2005 5 commits
-
-
Martin v. Löwis authored
Will backport to 2.4.
-
Brett Cannon authored
-
Brett Cannon authored
individually as tests. Also improved output when the test fails.
-
Brett Cannon authored
-
Andrew M. Kuchling authored
-
- 28 Feb, 2005 2 commits
-
-
Raymond Hettinger authored
Combined efforts of many including Peter Harris, Hye-Shik Chang, Martin v. Löwis, Nick Coghlan, Paul Moore, and Raymond Hettinger.
-
Raymond Hettinger authored
and improve the speed of the if/elif/else blocks.
-
- 27 Feb, 2005 1 commit
-
-
Martin v. Löwis authored
remove_history and replace_history. Will backport to 2.4.
-
- 24 Feb, 2005 1 commit
-
-
Martin v. Löwis authored
Also add xdrlib._test into the test suite.
-
- 23 Feb, 2005 2 commits
-
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
- 22 Feb, 2005 1 commit
-
-
Michael W. Hudson authored
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 Feb, 2005 4 commits
-
-
Raymond Hettinger authored
-
Raymond Hettinger authored
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 authored
-
Peter Astrand authored
-
- 20 Feb, 2005 5 commits
-
-
Raymond Hettinger authored
Afterwards, -0.5 loads in a single step and no longer requires a runtime UNARY_NEGATIVE operation.
-
Raymond Hettinger authored
Afterwards, -0.5 loads in a single step and no longer requires a runtime UNARY_NEGATIVE operation.
-
Raymond Hettinger authored
* Speed-up str.count() by using memchr() to fly between first char matches.
-
Raymond Hettinger authored
* 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 authored
newline.
-
- 19 Feb, 2005 1 commit
-
-
Ka-Ping Yee authored
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 Feb, 2005 3 commits
-
-
Martin v. Löwis authored
-
Walter Dörwald authored
and UserString.MutableString.__delitem__.
-
Vinay Sajip authored
-