1. 4267be6 Multi-arg form for set.difference() and set.difference_update(). by Raymond Hettinger · 16 years ago
  2. 9d53457 Merge in release25-maint r60793: by Gregory P. Smith · 16 years ago
  3. 610a93e Handle the case with zero arguments. by Raymond Hettinger · 16 years ago
  4. b7fea62 Rename bytesobject.c back to stringobject.c to keep with the PyString theme. by Gregory P. Smith · 16 years ago
  5. 99a3dce More reverting of r63675 per the mailing list discussions. This restores by Gregory P. Smith · 16 years ago
  6. 901c997 Issue 3048: Fixed sys.getsizeof for unicode objects. by Robert Schuppenies · 16 years ago
  7. 602d8db Added better pickling support to xrange objects. Cleaned up the unit test. by Alexandre Vassalotti · 16 years ago
  8. 1f2f61a Issue 2582: Fix pickling of xrange objects. by Alexandre Vassalotti · 16 years ago
  9. 5c4d3d0 Let set.intersection() and set.intersection_update() take multiple input arguments. by Raymond Hettinger · 16 years ago
  10. ee4bcad Let set.union() and set.update() accept multiple inputs. by Raymond Hettinger · 16 years ago
  11. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  12. 0144f27 Remove locking part of new buffer protocol. by Travis E. Oliphant · 16 years ago
  13. 80af6da Fixed complex.__getnewargs__() to not emit another complex object. by Alexandre Vassalotti · 16 years ago
  14. 7a6de8b Some style nits. Also clarify in the docstrings what __sizeof__ does. by Georg Brandl · 16 years ago
  15. 51df064 Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes. by Robert Schuppenies · 16 years ago
  16. 9981589 New environment variable PYTHONIOENCODING. by Martin v. Löwis · 16 years ago
  17. dc13b79 Refactor and clean up str.format() code (and helpers) in advance of optimizations. by Eric Smith · 16 years ago
  18. 30fadc1 #2999: fix name of third parameter in unicode.replace()'s docstring. by Georg Brandl · 16 years ago
  19. d99bee7 Issue 2855: Fix obscure crasher by slowing down the entire module. Mimics what was done to dictionaries in r59223. by Raymond Hettinger · 16 years ago
  20. f18a707 Revert #2990 patch; it's not necessary as Armin showed. by Georg Brandl · 16 years ago
  21. 5ec330c #2990: prevent inconsistent state while updating method cache. by Georg Brandl · 16 years ago
  22. 74a1dea #2989: add PyType_Modified(). by Georg Brandl · 16 years ago
  23. 4472083 Renamed bytesobject.c to bytearrayobject.c by Christian Heimes · 16 years ago
  24. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  25. 3497f94 First step of the C API rename: by Christian Heimes · 16 years ago
  26. 88659b0 #2592: delegate nb_index and the floor/truediv slots in weakref.proxy. by Georg Brandl · 16 years ago
  27. dffbf5f Revert copy_reg -> copyreg rename. by Georg Brandl · 16 years ago
  28. a9916b5 #2353: raise Py3k warning in file.xreadlines(). by Georg Brandl · 16 years ago
  29. ea0b22a Patch by Quentin Gallet-Gilles: Renaming leftovers for 2.6. by Alexandre Vassalotti · 16 years ago
  30. ecf9091 Don't allow keyword arguments to reversed(). by Georg Brandl · 16 years ago
  31. 5ffad66 Make generator repr consistent with function and code object repr. by Georg Brandl · 16 years ago
  32. c91210c #2863: add gen.__name__ and add this name to generator repr(). by Georg Brandl · 16 years ago
  33. 9138357 #2831: add start argument to enumerate(). Patch by Scott Dial and me. by Georg Brandl · 16 years ago
  34. ecbbd94 #2809 followup: even better split docstring. by Georg Brandl · 16 years ago
  35. cf537ff Addresses issue 2802: 'n' formatting for integers. by Eric Smith · 16 years ago
  36. dfb77db #2809: elaborate str.split docstring a bit. by Georg Brandl · 16 years ago
  37. 9510e4a Added module stub for copy_reg renaming in 3.0. by Alexandre Vassalotti · 16 years ago
  38. 1aed624 Backport fast alternate io.BytesIO implementation. by Alexandre Vassalotti · 16 years ago
  39. e81c376 Issue #2801: fix bug in float.is_integer where ValueError by Mark Dickinson · 16 years ago
  40. c5a1cc5 Frozensets do not benefit from autoconversion. by Raymond Hettinger · 16 years ago
  41. f19a7b9 A little reformating of Py3k warnings by Benjamin Peterson · 17 years ago
  42. 9f4f481 Use PyErr_WarnPy3k throughout by Benjamin Peterson · 17 years ago
  43. 6f34109 I finally got the time to update and merge Mark's and my trunk-math branch. The patch is collaborated work of Mark Dickinson and me. It was mostly done a few months ago. The patch fixes a lot of loose ends and edge cases related to operations with NaN, INF, very small values and complex math. by Christian Heimes · 17 years ago
  44. 27a6325 Fix for possible signed overflow: the behaviour of -LONG_MIN is by Mark Dickinson · 17 years ago
  45. fddc469 Prevent namespace pollution, add static for internal functions by Neal Norwitz · 17 years ago
  46. bcdc468 Backport manually r62342 from the py3k branch to the trunk. by Alexandre Vassalotti · 17 years ago
  47. 2ea2968 get rid of assert (size >= 0) now that an explicit if (size < 0) is in the code. by Gregory P. Smith · 17 years ago
  48. c00eb73 Raise SystemError when size < 0 is passed into PyString_FromStringAndSize, by Gregory P. Smith · 17 years ago
  49. d918e4e Bug #2388: Fix gcc warnings when compiling with --enable-unicode=ucs4. by Martin v. Löwis · 17 years ago
  50. aa63d0d Make file objects as thread safe as the underlying libc FILE* implementation. by Gregory P. Smith · 17 years ago
  51. 9fdfaaf Fix compiler warning about finite() missing on Solaris. by Neal Norwitz · 17 years ago
  52. d183bdd Revert r61969 which added casts to Py_CHARMASK to avoid compiler warnings. by Neal Norwitz · 17 years ago
  53. c0a56ff Pluralss only need one s, not 2 (intss -> ints) by Neal Norwitz · 17 years ago
  54. 231346e Fix warnings about using char as an array subscript. This is not portable by Neal Norwitz · 17 years ago
  55. 4ebd46a Fix memory leaks by Neal Norwitz · 17 years ago
  56. 0bcd613 Fix bytes so it works on 64-bit platforms. by Neal Norwitz · 17 years ago
  57. 1a6387e Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,61809,61812,61819,61917,61920,61930,61933-61934 via svnmerge from by Christian Heimes · 17 years ago
  58. f8f1fbd Move declarations to block start. by Georg Brandl · 17 years ago
  59. d65ab95 Fix tabs. by Georg Brandl · 17 years ago
  60. d5b635f Make Py3k warnings consistent w.r.t. punctuation; also respect the by Georg Brandl · 17 years ago
  61. 80055f6 #2355: py3k warning for buffer(). by Georg Brandl · 17 years ago
  62. 4677fbf7 Try to fix a bunch of compiler warnings on Win64. by Neal Norwitz · 17 years ago
  63. fac02fa Issue2469: Correct a typo I introduced at r61793: compilation error with UCS4 builds. by Amaury Forgeot d'Arc · 17 years ago
  64. 9a0d346 #1477: ur'\U0010FFFF' raised in narrow unicode builds. by Amaury Forgeot d'Arc · 17 years ago
  65. ade57d0 Remove compiler warnings (on Alpha at least) about using chars as by Neal Norwitz · 17 years ago
  66. 65bb42d #2348: add py3k warning for file.softspace. by Georg Brandl · 17 years ago
  67. 07e5681 #2346/#2347: add py3k warning for __methods__ and __members__. Patch by Jack Diederich. by Georg Brandl · 17 years ago
  68. c71d2a9 Remove unnecessary traceback save/restore pair. by Raymond Hettinger · 17 years ago
  69. 0538786 Issue 2354: Fix-up compare warning. Patch contributed by Jeff Balogh. by Raymond Hettinger · 17 years ago
  70. de48d84 Fix compiler warning. by Raymond Hettinger · 17 years ago
  71. 6c0ff8a Issue: 2354: Add 3K warning for the cmp argument to list.sort() and sorted(). by Raymond Hettinger · 17 years ago
  72. 9a47e62 Speed-up isinstance() for one easy case. by Raymond Hettinger · 17 years ago
  73. 6a644f9 Add py3k warnings for code and method inequality comparisons. This should resolve issue 2373. The codeobject.c and methodobject.c changes are both just backports of the Python 3 code. by Steven Bethard · 17 years ago
  74. b865f05 cell_compare needs to return -2 instead of NULL. by Steven Bethard · 17 years ago
  75. ae42f33 Add py3k warnings for object, type, cell and dict comparisons. This should resolve issue2342 and partly resolve issue2373. by Steven Bethard · 17 years ago
  76. 10ed0f5 Remove all traces of HAVE_STRERROR. by Brett Cannon · 17 years ago
  77. b1d3d96 Issue 2332: add new attribute names for instance method objects by Neal Norwitz · 17 years ago
  78. 3781aef Finish backporting new buffer API to Python 2.6. Left to do: memoryview object and structmodule. But, these need to be finished in Python 3.0 first. No objects support the new buffer API in Python 2.6 as of yet, and except for the memoryview object, I don't think they will. by Travis E. Oliphant · 17 years ago
  79. 6d91be3 - Issue 2379: Raise a Py3K warning for __getitem__ or __getslice__ on by Guido van Rossum · 17 years ago
  80. 5de250e Fix build on platforms that don't have intptr_t. Patch by Joseph Armbruster. by Jeffrey Yasskin · 17 years ago
  81. 887290d Fix the IOError message text when opening a file with an invalid filename. by Gregory P. Smith · 17 years ago
  82. 419fd49 Issue 2321: reduce memory usage (increase the memory that is returned by Neal Norwitz · 17 years ago
  83. 9ff19b5 Finished backporting PEP 3127, Integer Literal Support and Syntax. by Eric Smith · 17 years ago
  84. 8113ca6 Issue 2264: empty float presentation type needs to have at least one digit past the decimal point. by Eric Smith · 17 years ago
  85. c23b8a7 Issue 705836: Fix struct.pack(">f", 1e40) to behave consistently by Mark Dickinson · 17 years ago
  86. 5bdff60 Fix the overflows in expandtabs(). "This time for sure!" (Exploit at request.) by Guido van Rossum · 17 years ago
  87. 960b9b7 Move abc._Abstract into object by adding a new flag Py_TPFLAGS_IS_ABSTRACT, by Jeffrey Yasskin · 17 years ago
  88. 4b051ee Corrected assert to check for correct type in py3k. by Eric Smith · 17 years ago
  89. 09bde04 Use PY_FORMAT_SIZE_T instead of z for string formatting. Thanks Neal. by Christian Heimes · 17 years ago
  90. c11cecf Issue 1742669. Now %d accepts very big float numbers. Thanks Gabriel Genellina. by Facundo Batista · 17 years ago
  91. ad61bc8 #2067: file.__exit__() now calls subclasses' close() method. by Georg Brandl · 17 years ago
  92. 8a803dd Now that PyOS_ascii_formatd supports the 'n' format, simplify the float formatting code to just call it. by Eric Smith · 17 years ago
  93. bc32fee Added code to correct combining str and unicode in ''.format(). Added test case. by Eric Smith · 17 years ago
  94. a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 17 years ago
  95. 632fad3 Prevent a crash with nested scopes, again caused by calling Py_DECREF when the pointer by Amaury Forgeot d'Arc · 17 years ago
  96. 60d6c7f Issue #2115: __slot__ attributes setting was 10x slower. by Amaury Forgeot d'Arc · 17 years ago
  97. 3f91437 In PyNumber_ToBase, changed from an assert to returning an error when PyObject_Index() returns something other than an int or long. It should never be possible to trigger this, as PyObject_Index checks to make sure it returns an int or long. by Eric Smith · 17 years ago
  98. 2f0da53 Fixed repr() and str() of complex numbers. Complex suffered from the same problem as floats but I forgot to test and fix them. by Christian Heimes · 17 years ago
  99. e247f00 Use a static and interned string for __subclasscheck__ and __instancecheck__ as suggested by Thomas Heller in #2115 by Christian Heimes · 17 years ago
  100. 3b718a7 Implemented Martin's suggestion to clear the free lists during the garbage collection of the highest generation. by Christian Heimes · 17 years ago