1. fd07415 Issue #2377: Make importlib the implementation of __import__(). by Brett Cannon · 12 years ago
  2. 79ec55e Issue #1559549: Add 'name' and 'path' attributes to ImportError. by Brett Cannon · 12 years ago
  3. ab7bf21 Close issue #6210: Implement PEP 409 by Nick Coghlan · 12 years ago
  4. 23d7f12 use new generic __dict__ descriptor implementations by Benjamin Peterson · 12 years ago
  5. 67e7006 merge 3.2 by Benjamin Peterson · 12 years ago
  6. efe7c9d this is only a borrowed ref in Brett's branch by Benjamin Peterson · 12 years ago
  7. 9878b63 merge 3.2 by Benjamin Peterson · 12 years ago
  8. 2f9c71b bltinmod is borrowed, so it shouldn't be decrefed by Benjamin Peterson · 12 years ago
  9. 951138c merge 3.2 by Benjamin Peterson · 12 years ago
  10. 90b1358 put returns on their own lines by Benjamin Peterson · 12 years ago
  11. ac456a1 Fix some of the remaining test_capi leaks by Antoine Pitrou · 13 years ago
  12. 8b0a74e Fix some of the remaining test_capi refleaks by Antoine Pitrou · 13 years ago
  13. 84091bf Fix some of the refleaks in test_capi (ported from 3.2) by Antoine Pitrou · 13 years ago
  14. 55f217f Fix refleaks in test_capi (this was easier than I thought!) by Antoine Pitrou · 13 years ago
  15. bb5b92d Merge refleak fixes from 3.2 by Antoine Pitrou · 13 years ago
  16. 1c7ade5 Fix leaking a RuntimeError objects when creating sub-interpreters by Antoine Pitrou · 13 years ago
  17. 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 13 years ago
  18. e0e2735 Fix OSError.__init__ and OSError.__new__ so that each of them can be by Antoine Pitrou · 13 years ago
  19. 9e30aa5 Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH() by Victor Stinner · 13 years ago
  20. 53b33e7 UnicodeTranslateError uses the new Unicode API by Victor Stinner · 13 years ago
  21. da1ddf3 UnicodeEncodeError uses the new Unicode API by Victor Stinner · 13 years ago
  22. b09af03 Port error handlers from Py_UNICODE indexing to code point indexing. by Martin v. Löwis · 13 years ago
  23. 6b4883d PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy. by Antoine Pitrou · 13 years ago
  24. 31392e7 Fix my_basename(): make the string ready by Victor Stinner · 13 years ago
  25. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  26. 92236e5 SystemExit_init(): avoid an useless test by Victor Stinner · 13 years ago
  27. 07e20ef Issue #5437: A preallocated MemoryError instance should not hold traceback by Antoine Pitrou · 14 years ago
  28. 08be72d Add a new warning gategory, ResourceWarning, as discussed on python-dev. It is silent by default, by Georg Brandl · 14 years ago
  29. 285a689 Merged revisions 82157 via svnmerge from by Benjamin Peterson · 14 years ago
  30. 7eeb5b5 Issue #8848: U / U# formats of Py_BuildValue() are just alias to s / s# by Victor Stinner · 14 years ago
  31. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  32. 6237daf Don't decode/recode the unicode filename in SyntaxError_str() by Victor Stinner · 14 years ago
  33. c5f4e1e plug reference leak by Benjamin Peterson · 14 years ago
  34. 0facd77 Merged revisions 78418 via svnmerge from by Eric Smith · 14 years ago
  35. 78565b2 Merged revisions 73376,73393,73398,73400,73404-73405,73409,73419-73421,73432,73457,73460,73485-73486,73488-73489,73501-73502,73513-73514 via svnmerge from by Benjamin Peterson · 15 years ago
  36. 2c86004 Merged revisions 73447-73448 via svnmerge from by Georg Brandl · 15 years ago
  37. ab6f2f6 Fix segfaults when running test_exceptions with coverage tracing, caused by wrongly defining Exception.__context__ as a T_OBJECT structmember which does not set the member to NULL on None assignment, and generally does not do type checks. This could be used to crash the interpreter by setting any object to __context__. The same applies to __cause__. Also document the PyException_* functions. by Georg Brandl · 15 years ago
  38. f91df04 Merged revisions 69364-69365,69409-69410,69413,69417,69435,69442,69447,69495,69519-69521 via svnmerge from by Benjamin Peterson · 15 years ago
  39. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  40. b58dda7 Merged revisions 68633,68648,68667,68706,68718,68720-68721,68724-68727,68739 via svnmerge from by Benjamin Peterson · 16 years ago
  41. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  42. 2b968d6 #3295 actually define PyExc_BufferError by Benjamin Peterson · 16 years ago
  43. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  44. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  45. 7694100 Give with_traceback a docstring. by Georg Brandl · 16 years ago
  46. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  47. d1a1d1e Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow. by Martin v. Löwis · 17 years ago
  48. cbf3b5c Merged revisions 59275-59303 via svnmerge from by Christian Heimes · 17 years ago
  49. f929077 Reverting last commit. I had some staled data from an attempted svnmerge in my local sandbox by Christian Heimes · 17 years ago
  50. e69c320 Patch #1537 from Chad Austin by Christian Heimes · 17 years ago
  51. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  52. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 17 years ago
  53. 519a042 Replace PyObject_Unicode with PyObject_Str everywhere, and remove the by Thomas Heller · 17 years ago
  54. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  55. bed6784 Get rid of more uses of string and use unicode by Neal Norwitz · 17 years ago
  56. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  57. 1966f1c Fix refleaks exposed by test_raise. by Collin Winter · 17 years ago
  58. 828f04a Issue #1066: implement PEP 3109, 2/3 of PEP 3134. by Collin Winter · 17 years ago
  59. ed2b739 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  60. faa54a3 Code review of the new buffer protocol. Mostly add questions that should by Neal Norwitz · 17 years ago
  61. b99f762 Merged in py3k-buffer branch to main line. All objects now use the buffer protocol in PEP 3118. by Travis E. Oliphant · 17 years ago
  62. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  63. 10a60b3 Change Py_BuildValue to generate Unicode objects for by Martin v. Löwis · 17 years ago
  64. 32a4c71 Patch by Ron Adam: Don't use u prefix in unicode error messages by Walter Dörwald · 17 years ago
  65. 7eaf822 Merged revisions 55962-56019 via svnmerge from by Guido van Rossum · 17 years ago
  66. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  67. 787b03b PyUnicode_FromFormat() does support %02x, so use it by Walter Dörwald · 17 years ago
  68. f5bec7c Change tp_str implementations of exception classes to return unicode strings. by Walter Dörwald · 17 years ago
  69. 7569dfe Add a format specifier %R to PyUnicode_FromFormat(), which embeds by Walter Dörwald · 17 years ago
  70. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  71. d203431 Add 'U'/'U#' format characters to Py_BuildValue (and thus by Walter Dörwald · 17 years ago
  72. ebe3e16 Merged revisions 55342-55406 via svnmerge from by Guido van Rossum · 17 years ago
  73. 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 17 years ago
  74. 612344f Change UnicodeDecodeError objects so that the 'object' attribute by Walter Dörwald · 17 years ago
  75. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  76. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  77. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  78. ba7bf49 Remove the ability to slice/index on exceptions per PEP 352. by Brett Cannon · 17 years ago
  79. 2633c69 Remove the exceptions builtin module, all the exceptions are already builtin. by Neal Norwitz · 17 years ago
  80. 27d517b Merged revisions 53875-53911 via svnmerge from by Thomas Wouters · 17 years ago
  81. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  82. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  83. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  84. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  85. 73e5a5b Merge the rest of the trunk. by Thomas Wouters · 18 years ago
  86. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  87. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago