1. 7a6de8b Some style nits. Also clarify in the docstrings what __sizeof__ does. by Georg Brandl · 16 years ago
  2. 51df064 Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes. by Robert Schuppenies · 16 years ago
  3. 9981589 New environment variable PYTHONIOENCODING. by Martin v. Löwis · 16 years ago
  4. dc13b79 Refactor and clean up str.format() code (and helpers) in advance of optimizations. by Eric Smith · 16 years ago
  5. 30fadc1 #2999: fix name of third parameter in unicode.replace()'s docstring. by Georg Brandl · 16 years ago
  6. 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
  7. f18a707 Revert #2990 patch; it's not necessary as Armin showed. by Georg Brandl · 16 years ago
  8. 5ec330c #2990: prevent inconsistent state while updating method cache. by Georg Brandl · 16 years ago
  9. 74a1dea #2989: add PyType_Modified(). by Georg Brandl · 16 years ago
  10. 4472083 Renamed bytesobject.c to bytearrayobject.c by Christian Heimes · 16 years ago
  11. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  12. 3497f94 First step of the C API rename: by Christian Heimes · 16 years ago
  13. 88659b0 #2592: delegate nb_index and the floor/truediv slots in weakref.proxy. by Georg Brandl · 16 years ago
  14. dffbf5f Revert copy_reg -> copyreg rename. by Georg Brandl · 16 years ago
  15. a9916b5 #2353: raise Py3k warning in file.xreadlines(). by Georg Brandl · 16 years ago
  16. ea0b22a Patch by Quentin Gallet-Gilles: Renaming leftovers for 2.6. by Alexandre Vassalotti · 16 years ago
  17. ecf9091 Don't allow keyword arguments to reversed(). by Georg Brandl · 16 years ago
  18. 5ffad66 Make generator repr consistent with function and code object repr. by Georg Brandl · 16 years ago
  19. c91210c #2863: add gen.__name__ and add this name to generator repr(). by Georg Brandl · 16 years ago
  20. 9138357 #2831: add start argument to enumerate(). Patch by Scott Dial and me. by Georg Brandl · 16 years ago
  21. ecbbd94 #2809 followup: even better split docstring. by Georg Brandl · 16 years ago
  22. cf537ff Addresses issue 2802: 'n' formatting for integers. by Eric Smith · 16 years ago
  23. dfb77db #2809: elaborate str.split docstring a bit. by Georg Brandl · 16 years ago
  24. 9510e4a Added module stub for copy_reg renaming in 3.0. by Alexandre Vassalotti · 16 years ago
  25. 1aed624 Backport fast alternate io.BytesIO implementation. by Alexandre Vassalotti · 16 years ago
  26. e81c376 Issue #2801: fix bug in float.is_integer where ValueError by Mark Dickinson · 16 years ago
  27. c5a1cc5 Frozensets do not benefit from autoconversion. by Raymond Hettinger · 16 years ago
  28. f19a7b9 A little reformating of Py3k warnings by Benjamin Peterson · 16 years ago
  29. 9f4f481 Use PyErr_WarnPy3k throughout by Benjamin Peterson · 16 years ago
  30. 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 · 16 years ago
  31. 27a6325 Fix for possible signed overflow: the behaviour of -LONG_MIN is by Mark Dickinson · 16 years ago
  32. fddc469 Prevent namespace pollution, add static for internal functions by Neal Norwitz · 16 years ago
  33. bcdc468 Backport manually r62342 from the py3k branch to the trunk. by Alexandre Vassalotti · 16 years ago
  34. 2ea2968 get rid of assert (size >= 0) now that an explicit if (size < 0) is in the code. by Gregory P. Smith · 16 years ago
  35. c00eb73 Raise SystemError when size < 0 is passed into PyString_FromStringAndSize, by Gregory P. Smith · 16 years ago
  36. d918e4e Bug #2388: Fix gcc warnings when compiling with --enable-unicode=ucs4. by Martin v. Löwis · 16 years ago
  37. aa63d0d Make file objects as thread safe as the underlying libc FILE* implementation. by Gregory P. Smith · 16 years ago
  38. 9fdfaaf Fix compiler warning about finite() missing on Solaris. by Neal Norwitz · 16 years ago
  39. d183bdd Revert r61969 which added casts to Py_CHARMASK to avoid compiler warnings. by Neal Norwitz · 16 years ago
  40. c0a56ff Pluralss only need one s, not 2 (intss -> ints) by Neal Norwitz · 16 years ago
  41. 231346e Fix warnings about using char as an array subscript. This is not portable by Neal Norwitz · 16 years ago
  42. 4ebd46a Fix memory leaks by Neal Norwitz · 16 years ago
  43. 0bcd613 Fix bytes so it works on 64-bit platforms. by Neal Norwitz · 16 years ago
  44. 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 · 16 years ago
  45. f8f1fbd Move declarations to block start. by Georg Brandl · 16 years ago
  46. d65ab95 Fix tabs. by Georg Brandl · 16 years ago
  47. d5b635f Make Py3k warnings consistent w.r.t. punctuation; also respect the by Georg Brandl · 16 years ago
  48. 80055f6 #2355: py3k warning for buffer(). by Georg Brandl · 16 years ago
  49. 4677fbf7 Try to fix a bunch of compiler warnings on Win64. by Neal Norwitz · 16 years ago
  50. fac02fa Issue2469: Correct a typo I introduced at r61793: compilation error with UCS4 builds. by Amaury Forgeot d'Arc · 16 years ago
  51. 9a0d346 #1477: ur'\U0010FFFF' raised in narrow unicode builds. by Amaury Forgeot d'Arc · 16 years ago
  52. ade57d0 Remove compiler warnings (on Alpha at least) about using chars as by Neal Norwitz · 16 years ago
  53. 65bb42d #2348: add py3k warning for file.softspace. by Georg Brandl · 16 years ago
  54. 07e5681 #2346/#2347: add py3k warning for __methods__ and __members__. Patch by Jack Diederich. by Georg Brandl · 16 years ago
  55. c71d2a9 Remove unnecessary traceback save/restore pair. by Raymond Hettinger · 16 years ago
  56. 0538786 Issue 2354: Fix-up compare warning. Patch contributed by Jeff Balogh. by Raymond Hettinger · 16 years ago
  57. de48d84 Fix compiler warning. by Raymond Hettinger · 16 years ago
  58. 6c0ff8a Issue: 2354: Add 3K warning for the cmp argument to list.sort() and sorted(). by Raymond Hettinger · 16 years ago
  59. 9a47e62 Speed-up isinstance() for one easy case. by Raymond Hettinger · 16 years ago
  60. 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 · 16 years ago
  61. b865f05 cell_compare needs to return -2 instead of NULL. by Steven Bethard · 16 years ago
  62. ae42f33 Add py3k warnings for object, type, cell and dict comparisons. This should resolve issue2342 and partly resolve issue2373. by Steven Bethard · 16 years ago
  63. 10ed0f5 Remove all traces of HAVE_STRERROR. by Brett Cannon · 16 years ago
  64. b1d3d96 Issue 2332: add new attribute names for instance method objects by Neal Norwitz · 16 years ago
  65. 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 · 16 years ago
  66. 6d91be3 - Issue 2379: Raise a Py3K warning for __getitem__ or __getslice__ on by Guido van Rossum · 16 years ago
  67. 5de250e Fix build on platforms that don't have intptr_t. Patch by Joseph Armbruster. by Jeffrey Yasskin · 16 years ago
  68. 887290d Fix the IOError message text when opening a file with an invalid filename. by Gregory P. Smith · 16 years ago
  69. 419fd49 Issue 2321: reduce memory usage (increase the memory that is returned by Neal Norwitz · 16 years ago
  70. 9ff19b5 Finished backporting PEP 3127, Integer Literal Support and Syntax. by Eric Smith · 16 years ago
  71. 8113ca6 Issue 2264: empty float presentation type needs to have at least one digit past the decimal point. by Eric Smith · 16 years ago
  72. c23b8a7 Issue 705836: Fix struct.pack(">f", 1e40) to behave consistently by Mark Dickinson · 16 years ago
  73. 5bdff60 Fix the overflows in expandtabs(). "This time for sure!" (Exploit at request.) by Guido van Rossum · 16 years ago
  74. 960b9b7 Move abc._Abstract into object by adding a new flag Py_TPFLAGS_IS_ABSTRACT, by Jeffrey Yasskin · 16 years ago
  75. 4b051ee Corrected assert to check for correct type in py3k. by Eric Smith · 16 years ago
  76. 09bde04 Use PY_FORMAT_SIZE_T instead of z for string formatting. Thanks Neal. by Christian Heimes · 16 years ago
  77. c11cecf Issue 1742669. Now %d accepts very big float numbers. Thanks Gabriel Genellina. by Facundo Batista · 16 years ago
  78. ad61bc8 #2067: file.__exit__() now calls subclasses' close() method. by Georg Brandl · 16 years ago
  79. 8a803dd Now that PyOS_ascii_formatd supports the 'n' format, simplify the float formatting code to just call it. by Eric Smith · 16 years ago
  80. bc32fee Added code to correct combining str and unicode in ''.format(). Added test case. by Eric Smith · 16 years ago
  81. a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 16 years ago
  82. 632fad3 Prevent a crash with nested scopes, again caused by calling Py_DECREF when the pointer by Amaury Forgeot d'Arc · 16 years ago
  83. 60d6c7f Issue #2115: __slot__ attributes setting was 10x slower. by Amaury Forgeot d'Arc · 16 years ago
  84. 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 · 16 years ago
  85. 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 · 16 years ago
  86. e247f00 Use a static and interned string for __subclasscheck__ and __instancecheck__ as suggested by Thomas Heller in #2115 by Christian Heimes · 16 years ago
  87. 3b718a7 Implemented Martin's suggestion to clear the free lists during the garbage collection of the highest generation. by Christian Heimes · 16 years ago
  88. a37430a dict.copy() rises from the ashes. Revert r60687. by Raymond Hettinger · 16 years ago
  89. 5e527eb Added PyNumber_ToBase and supporting routines _PyInt_Format and by Eric Smith · 16 years ago
  90. 17a74c3 Add -3 warnings that set.copy(), dict.copy(), and defaultdict.copy() will go away in Py3.x by Raymond Hettinger · 16 years ago
  91. 0913166 Remove unnecessary modulo division. by Raymond Hettinger · 16 years ago
  92. 48397d6 Use prefix decrement by Christian Heimes · 16 years ago
  93. f75dbef Deallocate content of the dict free list on interpreter shutdown by Christian Heimes · 16 years ago
  94. b4ee4a1 Added some statistics code to dict and list object code. I wanted to test how a larger freelist affects the reusage of freed objects. Contrary to my gut feelings 80 objects is more than fine for small apps. I haven't profiled a large app yet. by Christian Heimes · 16 years ago
  95. 55285ef Return ints instead of longs for tuple.count() and tuple.index(). by Raymond Hettinger · 16 years ago
  96. 5b07ebc Issue 2025: Add tuple.count() and tuple.index() to follow the ABC in collections.Sequence. by Raymond Hettinger · 16 years ago
  97. 5b970ad Unified naming convention for free lists and their limits. All free lists by Christian Heimes · 16 years ago
  98. 6075a82 Limit free list of method and builtin function objects to 256 entries each. by Christian Heimes · 16 years ago
  99. 422051a Patch #1953 by Christian Heimes · 16 years ago
  100. a26cf9b Make int() and long() fall back to __trunc__(). See issue 2002. by Jeffrey Yasskin · 16 years ago