1. 74c3ea0 Fix build problems with the platform SDK on windows. It is not sufficient to test for the C compiler version when determining if we have the secure CRT from microsoft. Must test with an undocumented macro, __STDC_SECURE_LIB__ too. by Kristján Valur Jónsson · 18 years ago
  2. d5cfa54 Put method-wrappers into trashcan. Fixes #927248. by Martin v. Löwis · 18 years ago
  3. 0f415dc Another problem reported by Coverity. Backport candidate. by Neal Norwitz · 18 years ago
  4. b114984 Fix refleak by Neal Norwitz · 18 years ago
  5. 53c1692f Fix for an obscure bug introduced by revs 46806 and 46808, with a test. by Armin Rigo · 18 years ago
  6. 0f2783c Use Py_ssize_t by Neal Norwitz · 18 years ago
  7. ccff785 Patch #1507676: improve exception messages in abstract.c, object.c and typeobject.c. by Georg Brandl · 18 years ago
  8. d825143 Patch #1455898: Incremental mode for "mbcs" codec. by Martin v. Löwis · 18 years ago
  9. ea3912b If a classic class defined a __coerce__() method that just returned its two by Brett Cannon · 18 years ago
  10. de4c78a Initialize the type object so pychecker can't crash the interpreter. by Neal Norwitz · 18 years ago
  11. f608317 Fix the CRT argument error handling for VisualStudio .NET 2005. Install a CRT error handler and disable the assertion for debug builds. This causes CRT to set errno to EINVAL. by Kristján Valur Jónsson · 18 years ago
  12. b9845e7 Get rid of f_restricted too. Doc the other 4 ints that were already removed by Neal Norwitz · 18 years ago
  13. a00c0b9 Don't leak the list object if there's an error allocating the item storage. Backport candidate by Neal Norwitz · 18 years ago
  14. 7d5b6e8 f_code can't be NULL based on Frame_New and other code that derefs it. by Neal Norwitz · 18 years ago
  15. 8e6675a Update doc to make it agree with code. Bottom factor out some common code. by Neal Norwitz · 18 years ago
  16. 9a8ae8f Suppress warning on MacOSX about possible use before set of proc. by Skip Montanaro · 18 years ago
  17. 0e8bd7e Patch #1495999: Part two of Windows CE changes. by Martin v. Löwis · 18 years ago
  18. acd0d6d SF bug #1503294. by Armin Rigo · 18 years ago
  19. 90e27d3 Apply perky's fix for #1503157: "/".join([u"", u""]) raising OverflowError. by Georg Brandl · 18 years ago
  20. 6946ea0 Fix bug introduced in rev. 46806 by not having variable declaration at the top of a block. by Brett Cannon · 18 years ago
  21. 22565aa An object with __call__ as an attribute, when called, will have that attribute checked for __call__ itself, and will continue to look until it finds an object without the attribute. This can lead to an infinite recursion. by Brett Cannon · 18 years ago
  22. 2425081 RFE #1491485: str/unicode.endswith()/startswith() now accept a tuple as first argument. by Georg Brandl · 18 years ago
  23. c48b0e6 Fix inconsistency in naming within an enum. by Brett Cannon · 18 years ago
  24. de3b052 Buffer objects would return the read or write buffer for a wrapped object when by Brett Cannon · 18 years ago
  25. 98b40ad Bug #1502805: don't alias file.__exit__ to file.close since the by Georg Brandl · 18 years ago
  26. fd01d79 (arre, arigo) SF bug #1350060 by Armin Rigo · 18 years ago
  27. ea229bd Fix coding style guide bug. by Brett Cannon · 18 years ago
  28. 9f16760 Repair refleaks in unicodeobject. by Georg Brandl · 18 years ago
  29. 3f76779 Patch #1359618: Speed-up charmap encoder. by Martin v. Löwis · 18 years ago
  30. 7a07193 SF #1499797, Fix for memory leak in WindowsError_str by Neal Norwitz · 18 years ago
  31. 3eeb173 _PyObject_DebugMalloc(): The return value should add by Tim Peters · 18 years ago
  32. 9ea89d2 In a PYMALLOC_DEBUG build obmalloc adds extra debugging info by Tim Peters · 18 years ago
  33. 38d4d4a Fix memory leak found by valgrind. by Neal Norwitz · 18 years ago
  34. d770ebd Armin committed his patch while I was reviewing it (I'm sure by Tim Peters · 18 years ago
  35. 35f6d36 [ 1497053 ] Let dicts propagate the exceptions in user __eq__(). by Armin Rigo · 18 years ago
  36. 6b50c63 Correctly allocate complex types with tp_alloc. (bug #1498638) by Georg Brandl · 18 years ago
  37. 85ac850 Correctly unpickle 2.4 exceptions via __setstate__ (patch #1498571) by Georg Brandl · 18 years ago
  38. b16e4e7 Remove ; at end of macro. There was a compiler recently that warned by Neal Norwitz · 18 years ago
  39. 9e9ef9f changed count to return 0 for slices outside the source string by Fredrik Lundh · 18 years ago
  40. 93eff6f changed find/rfind to return -1 for matches outside the source string by Fredrik Lundh · 18 years ago
  41. 9faa3ed PyLong_FromString(): Continued fraction analysis (explained in by Tim Peters · 18 years ago
  42. b0432bc Do the check for no keyword arguments in __init__ so that by Georg Brandl · 18 years ago
  43. 861089f Disallow keyword args for exceptions. by Georg Brandl · 18 years ago
  44. 05f97bf Add a test case for exception pickling. args is never NULL. by Georg Brandl · 18 years ago
  45. ddba473 Restore exception pickle support. #1497319. by Georg Brandl · 18 years ago
  46. 33f4a6a dict_print(): So that Neal & I don't spend the rest of by Tim Peters · 18 years ago
  47. 6381443 dict_print(): Explicitly narrow the return value by Tim Peters · 18 years ago
  48. 5e1b45d No DOWNCAST is required since sizeof(Py_ssize_t) >= sizeof(int) and Py_ReprEntr returns an int by Neal Norwitz · 18 years ago
  49. d3881b0 Use Py_SAFE_DOWNCAST for safety. Fix format strings. Remove 2 more stray | in comment by Neal Norwitz · 18 years ago
  50. 80af59c Remove stray | in comment by Neal Norwitz · 18 years ago
  51. 9b10f7e Convert relevant dict internals to Py_ssize_t. by Tim Peters · 18 years ago
  52. b51b470 fixed "abc".count("", 100) == -96 error (hopefully, nobody's relying on by Fredrik Lundh · 18 years ago
  53. 96a8c39 Make use of METH_O and METH_NOARGS where possible. by Georg Brandl · 18 years ago
  54. 2cfaa34 Correct some value converting strangenesses. by Georg Brandl · 18 years ago
  55. c7c5114 Fix refleak in socketmodule. Replace bogus Py_BuildValue calls. by Georg Brandl · 18 years ago
  56. c1282ee Make last patch valid C89 so Windows compilers can deal with it. by Thomas Wouters · 18 years ago
  57. 2759627 use the UnicodeError traversal and clearing functions in UnicodeError by Michael W. Hudson · 18 years ago
  58. 43ab100 Fix refleaks in UnicodeError get and set methods. by Georg Brandl · 18 years ago
  59. 96495ee Quality control, meet exceptions.c, round two. by Michael W. Hudson · 18 years ago
  60. 22a80e7 Quality control, meet exceptions.c. by Michael W. Hudson · 18 years ago
  61. 80f8e80 needforspeed: added Py_MEMCPY macro (currently tuned for Visual C only), by Fredrik Lundh · 18 years ago
  62. 2d555b3 move semicolons by Richard Jones · 18 years ago
  63. c5b2a2e doc string additions and tweaks by Richard Jones · 18 years ago
  64. 0b7ef46 needforspeed: stringlib refactoring: use find_slice for stringobject by Fredrik Lundh · 18 years ago
  65. 60d8b18 needforspeed: stringlib refactoring: changed find_obj to find_slice, by Fredrik Lundh · 18 years ago
  66. c2d29c5 needforspeed: replace improvements, changed to Py_LOCAL_INLINE where appropriate by Fredrik Lundh · 18 years ago
  67. 94b8c12 Remove spurious semicolons after macro invocations. by Georg Brandl · 18 years ago
  68. d49d5c4 cleanup - removed trailing whitespace by Andrew Dalke · 18 years ago
  69. 7b9558d Conversion of exceptions over from faked-up classes to new-style C types. by Richard Jones · 18 years ago
  70. 2e3f6b7 Revert bogus change committed in 46432 to this file. by Martin v. Löwis · 18 years ago
  71. e0df762 fixed typo by Andrew Dalke · 18 years ago
  72. 2d23d5b needforspeed: more stringlib refactoring by Fredrik Lundh · 18 years ago
  73. d004fc8 Patch 1494554: Update numeric properties to Unicode 4.1. by Martin v. Löwis · 18 years ago
  74. d1b6cd7 Fix Coverity warnings. by Neal Norwitz · 18 years ago
  75. 7e0a62e Added description of why splitlines doesn't use the prealloc strategy by Andrew Dalke · 18 years ago
  76. 5132407 Added limits to the replace code so it does not count all of the matching by Andrew Dalke · 18 years ago
  77. e4e023c Simplify calling. by Georg Brandl · 18 years ago
  78. 07bbfc6 Comment typo by Andrew M. Kuchling · 18 years ago
  79. e6e43c8 needforspeed: stringlib refactoring: use stringlib/find for string find by Fredrik Lundh · 18 years ago
  80. c816281 needforspeed: use a macro to fix slice indexes by Fredrik Lundh · 18 years ago
  81. ce4eccb needforspeed: stringlib refactoring: use stringlib/find for unicode find by Fredrik Lundh · 18 years ago
  82. 58b5e84 needforspeed: stringlib refactoring, continued. added count and by Fredrik Lundh · 18 years ago
  83. c5da53b substring split now uses /F's fast string matching algorithm. by Andrew Dalke · 18 years ago
  84. 9c0e9c0 needspeed: rpartition documentation, tests, and a bug fixes. by Fredrik Lundh · 18 years ago
  85. b3167cb needforspeed: added rpartition implementation by Fredrik Lundh · 18 years ago
  86. be9f219 removed unnecessary include by Fredrik Lundh · 18 years ago
  87. 3a65d87 needforspeed: remove remaining USE_FAST macros; if fastsearch was by Fredrik Lundh · 18 years ago
  88. c2032fb needforspeed: cleanup by Fredrik Lundh · 18 years ago
  89. b947948 needforspeed: stringlib refactoring (in progress) by Fredrik Lundh · 18 years ago
  90. a50d201 needforspeed: stringlib refactoring (in progress) by Fredrik Lundh · 18 years ago
  91. 7c940d1 needforspeed: use Py_LOCAL on a few more locals in stringobject.c by Fredrik Lundh · 18 years ago
  92. 02758d6 Eeked out another 3% or so performance in split whitespace by cleaning up the algorithm. by Andrew Dalke · 18 years ago
  93. 525eab3 Changes to string.split/rsplit on whitespace to preallocate space in the by Andrew Dalke · 18 years ago
  94. 95e2a91 use Py_LOCAL also for string and unicode objects by Fredrik Lundh · 18 years ago
  95. f2c0dfd needforspeed: use Py_ssize_t for the fastsearch counter and skip by Fredrik Lundh · 18 years ago
  96. 450277f needforspeed: use METH_O for argument handling, which made partition some by Fredrik Lundh · 18 years ago
  97. 06a69dd needforspeed: partition implementation, part two. by Fredrik Lundh · 18 years ago
  98. fe5bb7e needforspeed: partition for 8-bit strings. for some simple tests, by Fredrik Lundh · 18 years ago
  99. d89fc22 Patch #1494387: SVN longobject.c compiler warnings by Tim Peters · 18 years ago
  100. 955b64c squelch gcc4 darwin/x86 compiler warnings by Bob Ippolito · 18 years ago