1. dfe5dc8 Make Python compile with --disable-unicode. by Georg Brandl · 17 years ago
  2. 9871d8f Continue rolling back pep-3141 changes that changed behavior from 2.5. This by Jeffrey Yasskin · 17 years ago
  3. 737c73f Make math.{floor,ceil}({int,long}) return float again for backwards by Jeffrey Yasskin · 17 years ago
  4. 8267d1d Bug #1481296: Fixed long(float('nan'))!=0L. by Christian Heimes · 17 years ago
  5. 000a074 Modified PyImport_Import and PyImport_ImportModule to always use absolute imports by calling __import__ with an explicit level of 0 by Christian Heimes · 17 years ago
  6. 2f3c16b Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just by Jeffrey Yasskin · 17 years ago
  7. 59a65fa Fix refleak by Neal Norwitz · 17 years ago
  8. 30b7804 Fix refleak introduced in r59576. by Georg Brandl · 17 years ago
  9. 0b7b6fd Patch #1549 by Thomas Herve. by Guido van Rossum · 17 years ago
  10. 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 · 17 years ago
  11. 0a8143f Applied patch #1635: Float patch for inf and nan on Windows (and other platforms). by Christian Heimes · 17 years ago
  12. fd7ed40 Give meaning to the oparg for BUILD_MAP: estimated size of the dictionary. by Raymond Hettinger · 17 years ago
  13. 6c87af5 Optimize PyList_AsTuple(). Improve cache performance by doing the by Raymond Hettinger · 17 years ago
  14. 90e10e7 Fixed bug #1620: New @spam.getter property syntax modifies the property in place. by Christian Heimes · 17 years ago
  15. 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 · 17 years ago
  16. 284d927 Backport of r59456:59458 from py3k to trunk by Christian Heimes · 17 years ago
  17. 2601549 When splitting, avoid making a copy of the string if the split doesn't find by Skip Montanaro · 17 years ago
  18. 4e3ebe0 Note that open() is the preferred way to open files (issue 1510). by Skip Montanaro · 17 years ago
  19. 4e2f714 Fix Issue 1045. by Raymond Hettinger · 17 years ago
  20. fe4826f merge -r59315:59316 from py3k: Fix issue #1553: An errornous __length_hint__ can make list() raise a SystemError by Christian Heimes · 17 years ago
  21. e227263 Shut up a compiler warning. by Guido van Rossum · 17 years ago
  22. 44eeaec Patch #1537 from Chad Austin by Christian Heimes · 17 years ago
  23. ef01d82 Implement PEP 366 by Nick Coghlan · 17 years ago
  24. dfdfaab Feature #1534 by Christian Heimes · 17 years ago
  25. ede3a32 Spaces vs. Tabs. by Georg Brandl · 17 years ago
  26. 31645ba Fix bug #1517, a segfault in lookdict(). by Guido van Rossum · 17 years ago
  27. 715ec18 Patch # 1507 by Mark Dickinson. Make complex(x, -0) retain the sign of by Guido van Rossum · 17 years ago
  28. ce7d10c Issue #1445: Fix a SystemError when accessing the ``cell_contents`` by Amaury Forgeot d'Arc · 17 years ago
  29. e8954f8 Backport of the PCbuild9 directory from the py3k branch. by Christian Heimes · 17 years ago
  30. 64c06e3 Backport of _abccoll.py by Benjamin Arangueren, issue 1383. by Guido van Rossum · 17 years ago
  31. 5087980 The incremental decoder for utf-7 must preserve its state between calls. by Amaury Forgeot d'Arc · 17 years ago
  32. 6f7e6fb Made _ParseTupleFinds only defined to unicodeobject.c by Facundo Batista · 17 years ago
  33. 292a069 Fix for stupid error (I need to remember to do a full 'make clean + make' by Facundo Batista · 17 years ago
  34. 57d5669 Now in find, rfind, index, and rindex, you can use None as defaults, by Facundo Batista · 17 years ago
  35. abfe453 Re-word sentence by Andrew M. Kuchling · 17 years ago
  36. 3d4c316 Added new decorator syntax to property.__doc__ Guido prefers _x over __x. by Christian Heimes · 17 years ago
  37. d1ef789 Issue 1416. Add getter, setter, deleter methods to properties that can be by Guido van Rossum · 17 years ago
  38. 3444879 Optimize common case for dict.fromkeys(). by Raymond Hettinger · 17 years ago
  39. e8d58ba Reposition the decref (spotted by eagle-eye norwitz). by Raymond Hettinger · 17 years ago
  40. 1760c8a Add set.isdisjoint() by Raymond Hettinger · 17 years ago
  41. cdcf887 Optimize dict.fromkeys() with dict inputs. Useful for resetting bag/muliset counts for example. by Raymond Hettinger · 17 years ago
  42. 9b847b4 Add missing "return NULL" in overflow check in PyObject_Repr(). by Guido van Rossum · 17 years ago
  43. 1c1ac38 Backport fixes for the code that decodes octal escapes (and for PyString by Guido van Rossum · 17 years ago
  44. a1e42e1 Fix the overflow checking of list_repeat. by Armin Rigo · 17 years ago
  45. 77ae87c Remove file-level typedefs that were inconsistently used throughout the file. by Brett Cannon · 17 years ago
  46. 6ba1a5f Coverity #151: Remove deadcode. by Neal Norwitz · 17 years ago
  47. 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 · 17 years ago
  48. 31ba848 Fix error introduced by r58288; if a tuple is length 0 return its repr and by Brett Cannon · 17 years ago
  49. 0b14f24 tuple.__repr__ did not consider a reference loop as it is not possible from by Brett Cannon · 17 years ago
  50. ad8fb0d Patch # 188 by Philip Jenvey. by Guido van Rossum · 17 years ago
  51. d544df7 Issue #1772851. Alters long.__hash__ from being *almost* completely by Facundo Batista · 17 years ago
  52. bbaff4c Properly indent two lines. (Spotted because it caused merge conflicts in the by Thomas Wouters · 17 years ago
  53. 0153159 Add a bunch of GIL release/acquire points in tp_print implementations and for by Brett Cannon · 17 years ago
  54. 4c20bc4 Generators had their throw() method allowing string exceptions. That's a no-no. by Brett Cannon · 17 years ago
  55. b559113 Patch # 1026 by Benjamin Aranguren (with Alex Martelli): by Guido van Rossum · 17 years ago
  56. a0c0551 Fix a possible segfault from recursing too deep to get the repr of a list. by Brett Cannon · 17 years ago
  57. 1e534b5 Fix a crasher where Python code managed to infinitely recurse in C code without by Brett Cannon · 17 years ago
  58. 9d04542 Set startinpos before calling the error handler. by Walter Dörwald · 17 years ago
  59. 8757878 Rewrap line. by Walter Dörwald · 17 years ago
  60. 3ccec68 Improve extended slicing support in builtin types and classes. Specifically: by Thomas Wouters · 17 years ago
  61. d7e9f60 Revert accidental checkins from last commit. by Georg Brandl · 17 years ago
  62. fdca6d8 Demand version 2.5.1 since 2.5 has a bug with codecs.open context managers. by Georg Brandl · 17 years ago
  63. 9ab80a9 Move another variable declaration up. by Walter Dörwald · 17 years ago
  64. 20b40d3 Move variable declaration up. by Walter Dörwald · 17 years ago
  65. 6e39080 Backport r57105 and r57145 from the py3k branch: UTF-32 codecs. by Walter Dörwald · 17 years ago
  66. 9efd9b6 Bug #1763149: use proper slice syntax in docstring. (backport) by Georg Brandl · 17 years ago
  67. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  68. 7c3b50d Patch #1673759: add a missing overflow check when formatting floats with %G. by Georg Brandl · 17 years ago
  69. 84a3efe Add T_PYSSIZET in structmember.h: This can be used for Py_ssize_t members. by Walter Dörwald · 17 years ago
  70. 5c9a81a Fix a bug when there was a newline in the string expandtabs was called on. by Neal Norwitz · 17 years ago
  71. 7dbd2a3 Prevent expandtabs() on string and unicode objects from causing a segfault when by Neal Norwitz · 17 years ago
  72. da587ab Bug #1733488: Fix compilation of bufferobject.c on AIX. Will backport to 2.5. by Martin v. Löwis · 17 years ago
  73. 0ac6019 Add the new function object attribute names from py3k. by Neal Norwitz · 17 years ago
  74. c792629 Whitespace cleanup by Neal Norwitz · 17 years ago
  75. 8b2bfbc Add -3 option to the interpreter to warn about features that are by Neal Norwitz · 17 years ago
  76. a84dcd7 Stop using METH_OLDARGS implicitly by Neal Norwitz · 17 years ago
  77. 5cd0fca Complete deprecation of BaseException.message. Some subclasses were directly by Brett Cannon · 17 years ago
  78. d501d1f Port rev 55353 from Guido: by Neal Norwitz · 17 years ago
  79. 360496d Fix a bug in test_c_api() that caused a negative refcount. by Guido van Rossum · 17 years ago
  80. abe1d48 As per Armin Rigo's suggestion, remove special handing from intobject.c to deal with the peculiarities of classobject's implementation of the number protocol. The nb_long method of classobject now falls back to nb_int if there is no __long__ attribute present. by Kristján Valur Jónsson · 17 years ago
  81. 229cee2 Deprecate BaseException.message as per PEP 352. by Brett Cannon · 17 years ago
  82. f030394 Fix problems in x64 build that were discovered by the testsuite: by Kristján Valur Jónsson · 17 years ago
  83. 8b267b5 Remove dead code. This code couldn't be reached because earlier in by Neal Norwitz · 17 years ago
  84. 9790a27 Fix for #1303614 and #1174712: by Armin Rigo · 17 years ago
  85. 0a440d4 Export function sanitize_the_mode from fileobject.c as _PyFile_SanitizeMode(). Use this function in posixmodule.c when implementing fdopen(). This fixes test_subprocess.py for a VisualStudio 2005 compile. by Kristján Valur Jónsson · 17 years ago
  86. 796fc99 Fix a usage of the dangerous pattern decref - modify field - incref. by Armin Rigo · 17 years ago
  87. c0ba52d Revert r53997 as per by Armin Rigo · 17 years ago
  88. f64c900 Silence a compiler warning about incompatible pointer types. by Brett Cannon · 17 years ago
  89. cbd9ee6 When __slots__ are set to a unicode string, make it work the same as by Neal Norwitz · 18 years ago
  90. 2f2f579 Fix a bug when using the __lltrace__ opcode tracer, and a problem sith signed chars in frameobject.c which can occur with opcodes > 127 by Kristján Valur Jónsson · 18 years ago
  91. 4db5fe9 SF 1193128: Let str.translate(None) be an identity transformation by Raymond Hettinger · 18 years ago
  92. 1393669 SF 1191699: Make slices picklable by Raymond Hettinger · 18 years ago
  93. c02e131 Add some missing NULL checks which trigger crashes on low-memory conditions. by Georg Brandl · 18 years ago
  94. f102e24 Add a type.__init__() method that enforces the same signature as by Guido van Rossum · 18 years ago
  95. 143b564 - Bug #1683368: The object.__init__() and object.__new__() methods are by Guido van Rossum · 18 years ago
  96. e3146f5 Add test and fix for fromkeys() optional argument. by Raymond Hettinger · 18 years ago
  97. 0bbbfc4 Extend work on rev 52962 and 53829 eliminating redundant PyObject_Hash() calls and fixing set/dict interoperability. by Raymond Hettinger · 18 years ago
  98. 2b86994 Patch #1675423: PyComplex_AsCComplex() now tries to convert an object by Georg Brandl · 18 years ago
  99. 26ca925 Remove warning: funcion declaration isn't a prototype by Jeremy Hylton · 18 years ago
  100. 6f2d09c Patch #1623563: allow __class__ assignment for classes with __slots__. by Žiga Seilnacht · 18 years ago