1. d7e1b2b static PyObject* variables should use PyString_InternFromString() instead of PyObject_FromString() to store a python string in a function level static var. by Christian Heimes · 18 years ago
  2. 908caac Added clear cache methods to clear the internal type lookup cache for ref leak test runs. by Christian Heimes · 18 years ago
  3. 3ea7b41 Moved Rational._binary_float_to_ratio() to float.as_integer_ratio() because by Jeffrey Yasskin · 18 years ago
  4. e7bb918 Whitespace cleanup by Neal Norwitz · 18 years ago
  5. 0cdf9a3 #1473257: add generator.gi_code attribute that refers to by Georg Brandl · 18 years ago
  6. dee3f65 Revert PySet_Add() changes. by Raymond Hettinger · 18 years ago
  7. d375723 Update test code for change to PySet_Add(). by Raymond Hettinger · 18 years ago
  8. 7c1be2a Make PySet_Add() work with frozensets. Works like PyTuple_SetItem() to build-up values in a brand new frozenset. by Raymond Hettinger · 18 years ago
  9. a97744c Use the right (portable) definition of the max of a Py_ssize_t. by Thomas Wouters · 18 years ago
  10. 8d5cf4e Rewrite the list_inline_repeat overflow check slightly differently. by Guido van Rossum · 18 years ago
  11. 3dbd4c5 Changes 54857 and 54840 broke code and were reverted in Py2.5 just before by Raymond Hettinger · 18 years ago
  12. 7f39c9f Backport of several functions from Python 3.0 to 2.6 including PyUnicode_FromString, PyUnicode_Format and PyLong_From/AsSsize_t. The functions are partly required for the backport of the bytearray type and _fileio module. They should also make it easier to port C to 3.0. by Christian Heimes · 18 years ago
  13. 5f95a79 Add prototypes to get the mathmodule.c to compile on OSF1 5.1 (Tru64) by Neal Norwitz · 18 years ago
  14. 37edeab Fix test67.py from issue #1303614. by Guido van Rossum · 18 years ago
  15. 96f2184 Indentation normalization. by Georg Brandl · 18 years ago
  16. 9ff1a44 Fix an edge case whereby the __del__() method of a classic class could by Guido van Rossum · 18 years ago
  17. 4956d2b Silence Coverity false alerts with CIDs #172, #183, #184 by Christian Heimes · 18 years ago
  18. cbf8f6c Temporarily revert 59967 until GC can be added. by Raymond Hettinger · 18 years ago
  19. c216df9 Issue 1820: structseq objects did not work with the % formatting operator or isinstance(t, tuple). by Raymond Hettinger · 18 years ago
  20. c3b2a4a Added more comments to the new structseq repr code and implemented several of Neal's suggestions. by Christian Heimes · 18 years ago
  21. c94e2b5 Now that I've learnt about structseq objects I felt like converting sys.float_info to a structseq. It's by Christian Heimes · 18 years ago
  22. 620fbe6 I missed the most important file by Christian Heimes · 18 years ago
  23. e4c270c Re-apply patch #1700288 (first applied in r59931, rolled back in r59940) by Amaury Forgeot d'Arc · 18 years ago
  24. d1c131a Back out r59931 - test_ctypes fails with it. by Georg Brandl · 18 years ago
  25. 27e26ec Patch #1700288: Method cache optimization, by Armin Rigo, ported to by Georg Brandl · 18 years ago
  26. dfe5dc8 Make Python compile with --disable-unicode. by Georg Brandl · 18 years ago
  27. 9871d8f Continue rolling back pep-3141 changes that changed behavior from 2.5. This by Jeffrey Yasskin · 18 years ago
  28. 737c73f Make math.{floor,ceil}({int,long}) return float again for backwards by Jeffrey Yasskin · 18 years ago
  29. 8267d1d Bug #1481296: Fixed long(float('nan'))!=0L. by Christian Heimes · 18 years ago
  30. 000a074 Modified PyImport_Import and PyImport_ImportModule to always use absolute imports by calling __import__ with an explicit level of 0 by Christian Heimes · 18 years ago
  31. 2f3c16b Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just by Jeffrey Yasskin · 18 years ago
  32. 59a65fa Fix refleak by Neal Norwitz · 18 years ago
  33. 30b7804 Fix refleak introduced in r59576. by Georg Brandl · 18 years ago
  34. 0b7b6fd Patch #1549 by Thomas Herve. by Guido van Rossum · 18 years ago
  35. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 18 years ago
  36. 0a8143f Applied patch #1635: Float patch for inf and nan on Windows (and other platforms). by Christian Heimes · 18 years ago
  37. fd7ed40 Give meaning to the oparg for BUILD_MAP: estimated size of the dictionary. by Raymond Hettinger · 18 years ago
  38. 6c87af5 Optimize PyList_AsTuple(). Improve cache performance by doing the by Raymond Hettinger · 18 years ago
  39. 90e10e7 Fixed bug #1620: New @spam.getter property syntax modifies the property in place. by Christian Heimes · 18 years ago
  40. f15c66e The new float repr causes too much trouble and pain. I'm disabling the feature until we have sorted out the issues on all machines. 64bit machines seem to have issues and Guido has reported even worse. by Christian Heimes · 18 years ago
  41. 284d927 Backport of r59456:59458 from py3k to trunk by Christian Heimes · 18 years ago
  42. 2601549 When splitting, avoid making a copy of the string if the split doesn't find by Skip Montanaro · 18 years ago
  43. 4e3ebe0 Note that open() is the preferred way to open files (issue 1510). by Skip Montanaro · 18 years ago
  44. 4e2f714 Fix Issue 1045. by Raymond Hettinger · 18 years ago
  45. fe4826f merge -r59315:59316 from py3k: Fix issue #1553: An errornous __length_hint__ can make list() raise a SystemError by Christian Heimes · 18 years ago
  46. e227263 Shut up a compiler warning. by Guido van Rossum · 18 years ago
  47. 44eeaec Patch #1537 from Chad Austin by Christian Heimes · 18 years ago
  48. ef01d82 Implement PEP 366 by Nick Coghlan · 18 years ago
  49. dfdfaab Feature #1534 by Christian Heimes · 18 years ago
  50. ede3a32 Spaces vs. Tabs. by Georg Brandl · 18 years ago
  51. 31645ba Fix bug #1517, a segfault in lookdict(). by Guido van Rossum · 18 years ago
  52. 715ec18 Patch # 1507 by Mark Dickinson. Make complex(x, -0) retain the sign of by Guido van Rossum · 18 years ago
  53. ce7d10c Issue #1445: Fix a SystemError when accessing the ``cell_contents`` by Amaury Forgeot d'Arc · 18 years ago
  54. e8954f8 Backport of the PCbuild9 directory from the py3k branch. by Christian Heimes · 18 years ago
  55. 64c06e3 Backport of _abccoll.py by Benjamin Arangueren, issue 1383. by Guido van Rossum · 18 years ago
  56. 5087980 The incremental decoder for utf-7 must preserve its state between calls. by Amaury Forgeot d'Arc · 18 years ago
  57. 6f7e6fb Made _ParseTupleFinds only defined to unicodeobject.c by Facundo Batista · 18 years ago
  58. 292a069 Fix for stupid error (I need to remember to do a full 'make clean + make' by Facundo Batista · 18 years ago
  59. 57d5669 Now in find, rfind, index, and rindex, you can use None as defaults, by Facundo Batista · 18 years ago
  60. abfe453 Re-word sentence by Andrew M. Kuchling · 18 years ago
  61. 3d4c316 Added new decorator syntax to property.__doc__ Guido prefers _x over __x. by Christian Heimes · 18 years ago
  62. d1ef789 Issue 1416. Add getter, setter, deleter methods to properties that can be by Guido van Rossum · 18 years ago
  63. 3444879 Optimize common case for dict.fromkeys(). by Raymond Hettinger · 18 years ago
  64. e8d58ba Reposition the decref (spotted by eagle-eye norwitz). by Raymond Hettinger · 18 years ago
  65. 1760c8a Add set.isdisjoint() by Raymond Hettinger · 18 years ago
  66. cdcf887 Optimize dict.fromkeys() with dict inputs. Useful for resetting bag/muliset counts for example. by Raymond Hettinger · 18 years ago
  67. 9b847b4 Add missing "return NULL" in overflow check in PyObject_Repr(). by Guido van Rossum · 18 years ago
  68. 1c1ac38 Backport fixes for the code that decodes octal escapes (and for PyString by Guido van Rossum · 18 years ago
  69. a1e42e1 Fix the overflow checking of list_repeat. by Armin Rigo · 18 years ago
  70. 77ae87c Remove file-level typedefs that were inconsistently used throughout the file. by Brett Cannon · 18 years ago
  71. 6ba1a5f Coverity #151: Remove deadcode. by Neal Norwitz · 18 years ago
  72. 8f66937 enumerate() is no longer bounded to using sequences shorter than LONG_MAX. The possibility of overflow was sending some newsgroup posters into a tizzy. by Raymond Hettinger · 18 years ago
  73. 31ba848 Fix error introduced by r58288; if a tuple is length 0 return its repr and by Brett Cannon · 18 years ago
  74. 0b14f24 tuple.__repr__ did not consider a reference loop as it is not possible from by Brett Cannon · 18 years ago
  75. ad8fb0d Patch # 188 by Philip Jenvey. by Guido van Rossum · 18 years ago
  76. d544df7 Issue #1772851. Alters long.__hash__ from being *almost* completely by Facundo Batista · 18 years ago
  77. bbaff4c Properly indent two lines. (Spotted because it caused merge conflicts in the by Thomas Wouters · 18 years ago
  78. 0153159 Add a bunch of GIL release/acquire points in tp_print implementations and for by Brett Cannon · 18 years ago
  79. 4c20bc4 Generators had their throw() method allowing string exceptions. That's a no-no. by Brett Cannon · 18 years ago
  80. b559113 Patch # 1026 by Benjamin Aranguren (with Alex Martelli): by Guido van Rossum · 18 years ago
  81. a0c0551 Fix a possible segfault from recursing too deep to get the repr of a list. by Brett Cannon · 18 years ago
  82. 1e534b5 Fix a crasher where Python code managed to infinitely recurse in C code without by Brett Cannon · 18 years ago
  83. 9d04542 Set startinpos before calling the error handler. by Walter Dörwald · 18 years ago
  84. 8757878 Rewrap line. by Walter Dörwald · 18 years ago
  85. 3ccec68 Improve extended slicing support in builtin types and classes. Specifically: by Thomas Wouters · 18 years ago
  86. d7e9f60 Revert accidental checkins from last commit. by Georg Brandl · 18 years ago
  87. fdca6d8 Demand version 2.5.1 since 2.5 has a bug with codecs.open context managers. by Georg Brandl · 18 years ago
  88. 9ab80a9 Move another variable declaration up. by Walter Dörwald · 18 years ago
  89. 20b40d3 Move variable declaration up. by Walter Dörwald · 18 years ago
  90. 6e39080 Backport r57105 and r57145 from the py3k branch: UTF-32 codecs. by Walter Dörwald · 18 years ago
  91. 9efd9b6 Bug #1763149: use proper slice syntax in docstring. (backport) by Georg Brandl · 18 years ago
  92. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 18 years ago
  93. 7c3b50d Patch #1673759: add a missing overflow check when formatting floats with %G. by Georg Brandl · 18 years ago
  94. 84a3efe Add T_PYSSIZET in structmember.h: This can be used for Py_ssize_t members. by Walter Dörwald · 18 years ago
  95. 5c9a81a Fix a bug when there was a newline in the string expandtabs was called on. by Neal Norwitz · 18 years ago
  96. 7dbd2a3 Prevent expandtabs() on string and unicode objects from causing a segfault when by Neal Norwitz · 18 years ago
  97. da587ab Bug #1733488: Fix compilation of bufferobject.c on AIX. Will backport to 2.5. by Martin v. Löwis · 18 years ago
  98. 0ac6019 Add the new function object attribute names from py3k. by Neal Norwitz · 18 years ago
  99. c792629 Whitespace cleanup by Neal Norwitz · 18 years ago
  100. 8b2bfbc Add -3 option to the interpreter to warn about features that are by Neal Norwitz · 18 years ago