1. da53afa A new table to help string->integer conversion was added yesterday to by Tim Peters · 18 years ago
  2. e68955c needforspeed: new replace implementation by Andrew Dalke. replace is by Fredrik Lundh · 18 years ago
  3. 0c71f88 needforspeed: check for overflow in replace (from Andrew Dalke) by Fredrik Lundh · 18 years ago
  4. 44aa9f71 Fix incorrect documentation for the Py_IS_FINITE(X) macro. by Kristján Valur Jónsson · 18 years ago
  5. cc1ecf4 Fix another typo by Andrew M. Kuchling · 18 years ago
  6. 2bddcbf Added tests for implementation error we came up with in the need for speed sprint. by Andrew Dalke · 18 years ago
  7. 1d2576d Fix comment typos by Andrew M. Kuchling · 18 years ago
  8. dfe503d needforspeed: _toupper/_tolower is a SUSv2 thing; fall back on ISO C by Fredrik Lundh · 18 years ago
  9. f94323f Added a new macro, Py_IS_FINITE(X). On windows there is an intrinsic for this and it is more efficient than to use !Py_IS_INFINITE(X) && !Py_IS_NAN(X). No change on other platforms by Kristján Valur Jónsson · 18 years ago
  10. 4b4e33e needforspeed: make new upper/lower work properly for single-character by Fredrik Lundh · 18 years ago
  11. 39ccef6 needforspeed: speed up upper and lower for 8-bit string objects. by Fredrik Lundh · 18 years ago
  12. c620bad Add entry; and fix a typo by Andrew M. Kuchling · 18 years ago
  13. 143bdfc Update graminit.c for the fix for #1488915, Multiple dots in relative import by Thomas Wouters · 18 years ago
  14. cf8229e Fix #1488915, Multiple dots in relative import statement raise SyntaxError. by Thomas Wouters · 18 years ago
  15. c611f17 Replace tab inside comment with space. by Walter Dörwald · 18 years ago
  16. 61bbe6c fix broken links in PDF (SF patch #1281291, contributed by Rory Yorke) by Fred Drake · 18 years ago
  17. 3cdf24b Minor edits; add an item by Andrew M. Kuchling · 18 years ago
  18. 696cf43 Heavily fiddled variant of patch #1442927: PyLong_FromString optimization. by Tim Peters · 18 years ago
  19. f404908 Disable the damn empty-string replace test -- it can't by Tim Peters · 18 years ago
  20. f47b1cd Whitespace normalization. by Tim Peters · 18 years ago
  21. beaec0c We can't leave the checked-in tests broken. by Tim Peters · 18 years ago
  22. e5488ec Added a slew of test for string replace, based various corner cases from by Andrew Dalke · 18 years ago
  23. 347ee27 needforspeed: refactored the replace code slightly; special-case by Fredrik Lundh · 18 years ago
  24. eb62127 refactor unpack, add unpack_from by Bob Ippolito · 18 years ago
  25. d5e0dc5 needforspeedindeed: use fastsearch also for __contains__ by Fredrik Lundh · 18 years ago
  26. 6471ee4 needforspeed: use "fastsearch" for count and findstring helpers. this by Fredrik Lundh · 18 years ago
  27. 240bf2a use Py_ssize_t for string indexes (thanks, neal!) by Fredrik Lundh · 18 years ago
  28. 8ff672e Add missing svn:eol-style property to text files. by Tim Peters · 18 years ago
  29. 211219a Whitespace normalization. by Tim Peters · 18 years ago
  30. 1bddfb8 test_struct grew weird behavior under regrtest.py -R, by Tim Peters · 18 years ago
  31. 7763351 return 0 on misses, not -1. by Fredrik Lundh · 18 years ago
  32. f178e5c Get the Windows build working again (recover from `struct` module changes). by Tim Peters · 18 years ago
  33. 70bd199 Add item by Andrew M. Kuchling · 18 years ago
  34. 07c023b fix typo in _struct by Bob Ippolito · 18 years ago
  35. d3611eb forward declaration for PyStructType by Bob Ippolito · 18 years ago
  36. 150faff Add two items by Andrew M. Kuchling · 18 years ago
  37. 4de3f99 fix linking issue, warnings, in struct by Bob Ippolito · 18 years ago
  38. 232f3c9 patch #1493701: performance enhancements for struct module by Bob Ippolito · 18 years ago
  39. 7ccc95a patch #1493701: performance enhancements for struct module by Bob Ippolito · 18 years ago
  40. 27abce5 revert #1493701 by Bob Ippolito · 18 years ago
  41. 9deeeef Remove duplicate item by Andrew M. Kuchling · 18 years ago
  42. fb8b84a Patch #1493701: performance enhancements for struct module. by Bob Ippolito · 18 years ago
  43. b713ec2 Bug #1334662 / patch #1335972: int(string, base) wrong answers. by Tim Peters · 18 years ago
  44. b63588c needforspeed: use append+reverse for rsplit, use "bloom filters" to by Fredrik Lundh · 18 years ago
  45. 7298f27 Update Misc/NEWS for gzip patch #1281707 by Bob Ippolito · 18 years ago
  46. 82d2558 Update Misc/NEWS for gzip patch #1281707 by Bob Ippolito · 18 years ago
  47. a372711 fix broken merge by Richard Jones · 18 years ago
  48. cebbefc Applied patch 1337051 by Neal Norwitz, saving 4 ints on frame objects. by Richard Jones · 18 years ago
  49. 69c3476 An improved script for building the binary distribution on MacOSX. by Ronald Oussoren · 18 years ago
  50. 3e134a5 Use 'speed' instead of 'performance', because I agree with the argument by Andrew M. Kuchling · 18 years ago
  51. 1cdace4 Mention string improvements by Andrew M. Kuchling · 18 years ago
  52. c602723 Add some items; mention the sprint by Andrew M. Kuchling · 18 years ago
  53. b02daf7 Patch #1488098. by Ronald Oussoren · 18 years ago
  54. 58f8eba Disable linking extensions with -lpython2.5 for darwin. This should fix bug by Ronald Oussoren · 18 years ago
  55. 658d513 PyErr_NewException now accepts a tuple of base classes as its "base" parameter. by Georg Brandl · 18 years ago
  56. da89b99 Avoid creating a mess when installing a framework for the second time. by Ronald Oussoren · 18 years ago
  57. 7c88dcc Merge from rjones-funccall branch. by Richard Jones · 18 years ago
  58. 833bf94 needforspeed: fixed unicode "in" operator to use same implementation by Fredrik Lundh · 18 years ago
  59. 3d885e0 needforspeed: check first *and* last character before doing a full memcmp by Fredrik Lundh · 18 years ago
  60. 1bacc64 unicode_repeat(): Change type of local to Py_ssize_t, by Tim Peters · 18 years ago
  61. 286085c PyUnicode_Join(): Recent code changes introduced new by Tim Peters · 18 years ago
  62. 8a8e05a needforspeed: use memcpy for "long" strings; use a better algorithm by Fredrik Lundh · 18 years ago
  63. f1d60a5 needforspeed: speed up unicode repeat, unicode string copy by Fredrik Lundh · 18 years ago
  64. d82c310 Apply revised patch for GzipFile.readline performance #1281707 by Bob Ippolito · 18 years ago
  65. 763b50f docstring tweaks: count counts non-overlapping substrings, not by Fredrik Lundh · 18 years ago
  66. b975973 Revert gzip readline performance patch #1281707 until a more generic performance improvement can be found by Bob Ippolito · 18 years ago
  67. d72aab5 GzipFile.readline performance improvement (~30-40%), patch #1281707 by Bob Ippolito · 18 years ago
  68. 31a4262 Define SIZEOF_{DOUBLE,FLOAT} on Windows. Else by Tim Peters · 18 years ago
  69. a43190b Patch #1492356: Port to Windows CE (patch set 1). by Martin v. Löwis · 18 years ago
  70. f90347f Patch 1490384: New Icons for the PC build. by Martin v. Löwis · 18 years ago
  71. 00f6e19 Apply patch #1492255 from Mike Foord. by George Yoshida · 18 years ago
  72. c120a6d Fix the TeX compile error. by George Yoshida · 18 years ago
  73. 1e9f574 Minor edits by Andrew M. Kuchling · 18 years ago
  74. b688b6c Apply patch #1492147 from Mike Foord. by George Yoshida · 18 years ago
  75. 5c6a5ec - Add 'as' and 'with' as new keywords in 2.5. by George Yoshida · 18 years ago
  76. 6fffa5e - markup fix - add clarifying words by George Yoshida · 18 years ago
  77. 306b1f3 Fix bug #1000914 (again). by Ronald Oussoren · 18 years ago
  78. 8a299d2 Whitespace normalization. by Tim Peters · 18 years ago
  79. bf91f78 * Change working directory to the users home by Ronald Oussoren · 18 years ago
  80. 4eafe9e Oops, I forgot to include this file in the last commit (46046): by Neal Norwitz · 18 years ago
  81. 58e2888 Bug/Patch #1481770: Use .so extension for shared libraries on HP-UX for ia64. by Neal Norwitz · 18 years ago
  82. 5ef9224 Fix #1474677, non-keyword argument following keyword. by Neal Norwitz · 18 years ago
  83. 02104df Fix #132 from Coverity, retval could have been derefed by Neal Norwitz · 18 years ago
  84. e04fe8c Typo fix; add clarifying word by Andrew M. Kuchling · 18 years ago
  85. 3e3cb79 Fix some minor issues with the generated application bundles on MacOSX by Ronald Oussoren · 18 years ago
  86. 9e9c252 Changed status from "beta" to "production"; since logging has been part of the stdlib since 2.3, it should be safe to make this assertion ;-) by Vinay Sajip · 18 years ago
  87. 007a382 Bug #1490688: properly document %e, %f, %g format subtleties. by Georg Brandl · 18 years ago
  88. 7b90e16 Bug #1462152: file() now checks more thoroughly for invalid mode by Georg Brandl · 18 years ago
  89. b678ce5 Little cleanup by Neal Norwitz · 18 years ago
  90. fad6559 Fix test_locale for platforms without a default thousands separator. by Georg Brandl · 18 years ago
  91. bbab671 Remove unused import. by Georg Brandl · 18 years ago
  92. e4751e3 Amendments to patch #1484695. by Georg Brandl · 18 years ago
  93. fd4c419 Whitespace normalization. by Tim Peters · 18 years ago
  94. b89316f Patch #1180296: improve locale string formatting functions by Georg Brandl · 18 years ago
  95. 9d6da3e Delay-import some large modules to speed up urllib2 import. (fixes #1484793). by Georg Brandl · 18 years ago
  96. e3a2583 Patch #1486962: Several bugs in the turtle Tk demo module were fixed by Georg Brandl · 18 years ago
  97. feb0a3b Add global debug flag to cookielib to avoid heavy dependency on the logging module. by Georg Brandl · 18 years ago
  98. 378d592 Patch #1490224: set time.altzone correctly on Cygwin. by Georg Brandl · 18 years ago
  99. 9e5b5e4 Fix typo in os.utime docstring (patch #1490189) by Georg Brandl · 18 years ago
  100. d419a93 Apply patch #1489784 from Michael Foord. by Georg Brandl · 18 years ago