1. ae1c098 Add Soc student by Andrew M. Kuchling · 18 years ago
  2. fe5bb7e needforspeed: partition for 8-bit strings. for some simple tests, by Fredrik Lundh · 18 years ago
  3. d89fc22 Patch #1494387: SVN longobject.c compiler warnings by Tim Peters · 18 years ago
  4. c285e62 Repair idiot typo, and complete the job of trying to by Tim Peters · 18 years ago
  5. 4c803f1 Move over to use of METH_O and METH_NOARGS. by Brett Cannon · 18 years ago
  6. 45c6472 Add missing files from x86 darwin ctypes patch by Bob Ippolito · 18 years ago
  7. d95d593 Whitespace normalization. by Tim Peters · 18 years ago
  8. 7a822da Some Win64 pre-release in 2000 didn't support by Tim Peters · 18 years ago
  9. 3685045 Change test_values so that it compares the lowercasing of group names since getgrall() can return all lowercase names while getgrgid() returns proper casing. by Brett Cannon · 18 years ago
  10. f5bc414 Fix minor typo in prep_cif.c by Ronald Oussoren · 18 years ago
  11. 485dbd1 Add a x-ref to newer calling APIs. by Georg Brandl · 18 years ago
  12. 964e02a fix test_float regression and 64-bit size mismatch issue by Bob Ippolito · 18 years ago
  13. 955b64c squelch gcc4 darwin/x86 compiler warnings by Bob Ippolito · 18 years ago
  14. 0ed0587 Swap out bare malloc()/free() use for PyMem_MALLOC()/PyMem_FREE() . by Brett Cannon · 18 years ago
  15. 9d67d5e Someone seems to just have copy-pasted the docs of by Georg Brandl · 18 years ago
  16. 66c0935 enable darwin/x86 support for libffi and hence ctypes (doesn't yet support --enable-universalsdk) by Bob Ippolito · 18 years ago
  17. a99865b Use faster struct pack/unpack functions for the endian table that matches the host's by Bob Ippolito · 18 years ago
  18. 04ab994 Use LONG_MIN and LONG_MAX to check Python integer bounds instead of the incorrect INT_MIN and INT_MAX by Bob Ippolito · 18 years ago
  19. 554da41 needforspeed: use insert+reverse instead of append by Fredrik Lundh · 18 years ago
  20. 684fd0c Replace PyObject_CallFunction calls with only object args by Georg Brandl · 18 years ago
  21. 3b0cae9 fix a struct regression where long would be returned for short unsigned integers by Bob Ippolito · 18 years ago
  22. 3fc2bb9 Fix Cygwin compiler issue by Bob Ippolito · 18 years ago
  23. 60cbb3f * eliminate warning by reverting tmp_s type to 'const char*' by Jack Diederich · 18 years ago
  24. 94f68ee Struct now unpacks to PY_LONG_LONG directly when possible, also include #ifdef'ed out code that will return int instead of long when in bounds (not active since it's an API and doc change) by Bob Ippolito · 18 years ago
  25. c3434b3 needforspeed: use fastsearch also for find/index and contains. the by Fredrik Lundh · 18 years ago
  26. cfecd59 Guard the _active.remove() call to avoid errors when there is no _active list. by Georg Brandl · 18 years ago
  27. a85bf20 Faster path for PyLong_FromLongLong, using PyLong_FromLong algorithm by Bob Ippolito · 18 years ago
  28. 598710c Added overflow test for adding two (very) large strings where the by Andrew Dalke · 18 years ago
  29. f344c94 Comment typo by Andrew M. Kuchling · 18 years ago
  30. b552c4d Code had returned an ssize_t, upcast to long, then converted with PyInt_FromLong. by Andrew Dalke · 18 years ago
  31. af72237 needforspeed: use "fastsearch" for count. this results in a 3x speedup by Fredrik Lundh · 18 years ago
  32. 8c90910 Fixed problem identified by Georg. The special-case in-place code for replace by Andrew Dalke · 18 years ago
  33. da53afa A new table to help string->integer conversion was added yesterday to by Tim Peters · 18 years ago
  34. e68955c needforspeed: new replace implementation by Andrew Dalke. replace is by Fredrik Lundh · 18 years ago
  35. 0c71f88 needforspeed: check for overflow in replace (from Andrew Dalke) by Fredrik Lundh · 18 years ago
  36. 44aa9f71 Fix incorrect documentation for the Py_IS_FINITE(X) macro. by Kristján Valur Jónsson · 18 years ago
  37. cc1ecf4 Fix another typo by Andrew M. Kuchling · 18 years ago
  38. 2bddcbf Added tests for implementation error we came up with in the need for speed sprint. by Andrew Dalke · 18 years ago
  39. 1d2576d Fix comment typos by Andrew M. Kuchling · 18 years ago
  40. dfe503d needforspeed: _toupper/_tolower is a SUSv2 thing; fall back on ISO C by Fredrik Lundh · 18 years ago
  41. 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
  42. 4b4e33e needforspeed: make new upper/lower work properly for single-character by Fredrik Lundh · 18 years ago
  43. 39ccef6 needforspeed: speed up upper and lower for 8-bit string objects. by Fredrik Lundh · 18 years ago
  44. c620bad Add entry; and fix a typo by Andrew M. Kuchling · 18 years ago
  45. 143bdfc Update graminit.c for the fix for #1488915, Multiple dots in relative import by Thomas Wouters · 18 years ago
  46. cf8229e Fix #1488915, Multiple dots in relative import statement raise SyntaxError. by Thomas Wouters · 18 years ago
  47. c611f17 Replace tab inside comment with space. by Walter Dörwald · 18 years ago
  48. 61bbe6c fix broken links in PDF (SF patch #1281291, contributed by Rory Yorke) by Fred Drake · 18 years ago
  49. 3cdf24b Minor edits; add an item by Andrew M. Kuchling · 18 years ago
  50. 696cf43 Heavily fiddled variant of patch #1442927: PyLong_FromString optimization. by Tim Peters · 18 years ago
  51. f404908 Disable the damn empty-string replace test -- it can't by Tim Peters · 18 years ago
  52. f47b1cd Whitespace normalization. by Tim Peters · 18 years ago
  53. beaec0c We can't leave the checked-in tests broken. by Tim Peters · 18 years ago
  54. e5488ec Added a slew of test for string replace, based various corner cases from by Andrew Dalke · 18 years ago
  55. 347ee27 needforspeed: refactored the replace code slightly; special-case by Fredrik Lundh · 18 years ago
  56. eb62127 refactor unpack, add unpack_from by Bob Ippolito · 18 years ago
  57. d5e0dc5 needforspeedindeed: use fastsearch also for __contains__ by Fredrik Lundh · 18 years ago
  58. 6471ee4 needforspeed: use "fastsearch" for count and findstring helpers. this by Fredrik Lundh · 18 years ago
  59. 240bf2a use Py_ssize_t for string indexes (thanks, neal!) by Fredrik Lundh · 18 years ago
  60. 8ff672e Add missing svn:eol-style property to text files. by Tim Peters · 18 years ago
  61. 211219a Whitespace normalization. by Tim Peters · 18 years ago
  62. 1bddfb8 test_struct grew weird behavior under regrtest.py -R, by Tim Peters · 18 years ago
  63. 7763351 return 0 on misses, not -1. by Fredrik Lundh · 18 years ago
  64. f178e5c Get the Windows build working again (recover from `struct` module changes). by Tim Peters · 18 years ago
  65. 70bd199 Add item by Andrew M. Kuchling · 18 years ago
  66. 07c023b fix typo in _struct by Bob Ippolito · 18 years ago
  67. d3611eb forward declaration for PyStructType by Bob Ippolito · 18 years ago
  68. 150faff Add two items by Andrew M. Kuchling · 18 years ago
  69. 4de3f99 fix linking issue, warnings, in struct by Bob Ippolito · 18 years ago
  70. 232f3c9 patch #1493701: performance enhancements for struct module by Bob Ippolito · 18 years ago
  71. 7ccc95a patch #1493701: performance enhancements for struct module by Bob Ippolito · 18 years ago
  72. 27abce5 revert #1493701 by Bob Ippolito · 18 years ago
  73. 9deeeef Remove duplicate item by Andrew M. Kuchling · 18 years ago
  74. fb8b84a Patch #1493701: performance enhancements for struct module. by Bob Ippolito · 18 years ago
  75. b713ec2 Bug #1334662 / patch #1335972: int(string, base) wrong answers. by Tim Peters · 18 years ago
  76. b63588c needforspeed: use append+reverse for rsplit, use "bloom filters" to by Fredrik Lundh · 18 years ago
  77. 7298f27 Update Misc/NEWS for gzip patch #1281707 by Bob Ippolito · 18 years ago
  78. 82d2558 Update Misc/NEWS for gzip patch #1281707 by Bob Ippolito · 18 years ago
  79. a372711 fix broken merge by Richard Jones · 18 years ago
  80. cebbefc Applied patch 1337051 by Neal Norwitz, saving 4 ints on frame objects. by Richard Jones · 18 years ago
  81. 69c3476 An improved script for building the binary distribution on MacOSX. by Ronald Oussoren · 18 years ago
  82. 3e134a5 Use 'speed' instead of 'performance', because I agree with the argument by Andrew M. Kuchling · 18 years ago
  83. 1cdace4 Mention string improvements by Andrew M. Kuchling · 18 years ago
  84. c602723 Add some items; mention the sprint by Andrew M. Kuchling · 18 years ago
  85. b02daf7 Patch #1488098. by Ronald Oussoren · 18 years ago
  86. 58f8eba Disable linking extensions with -lpython2.5 for darwin. This should fix bug by Ronald Oussoren · 18 years ago
  87. 658d513 PyErr_NewException now accepts a tuple of base classes as its "base" parameter. by Georg Brandl · 18 years ago
  88. da89b99 Avoid creating a mess when installing a framework for the second time. by Ronald Oussoren · 18 years ago
  89. 7c88dcc Merge from rjones-funccall branch. by Richard Jones · 18 years ago
  90. 833bf94 needforspeed: fixed unicode "in" operator to use same implementation by Fredrik Lundh · 18 years ago
  91. 3d885e0 needforspeed: check first *and* last character before doing a full memcmp by Fredrik Lundh · 18 years ago
  92. 1bacc64 unicode_repeat(): Change type of local to Py_ssize_t, by Tim Peters · 18 years ago
  93. 286085c PyUnicode_Join(): Recent code changes introduced new by Tim Peters · 18 years ago
  94. 8a8e05a needforspeed: use memcpy for "long" strings; use a better algorithm by Fredrik Lundh · 18 years ago
  95. f1d60a5 needforspeed: speed up unicode repeat, unicode string copy by Fredrik Lundh · 18 years ago
  96. d82c310 Apply revised patch for GzipFile.readline performance #1281707 by Bob Ippolito · 18 years ago
  97. 763b50f docstring tweaks: count counts non-overlapping substrings, not by Fredrik Lundh · 18 years ago
  98. b975973 Revert gzip readline performance patch #1281707 until a more generic performance improvement can be found by Bob Ippolito · 18 years ago
  99. d72aab5 GzipFile.readline performance improvement (~30-40%), patch #1281707 by Bob Ippolito · 18 years ago
  100. 31a4262 Define SIZEOF_{DOUBLE,FLOAT} on Windows. Else by Tim Peters · 18 years ago