1. e62a694 Issue #26020: Fix evaluation order for set literals by Raymond Hettinger · 8 years ago
  2. 0bb165e Issue #4806: Avoid masking TypeError when *-unpacking a generator by Martin Panter · 9 years ago
  3. 763a61c Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 9 years ago
  4. bc62af1 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 9 years ago
  5. 5951f23 Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
  6. 14462d4 remove tabs from ceval.c (closes #24895) by Benjamin Peterson · 9 years ago
  7. 1670af6 Added the const qualifier for char* argument of Py_EnterRecursiveCall(). by Serhiy Storchaka · 9 years ago
  8. cc06dbf sync opcode prediction code with python 3 by Benjamin Peterson · 9 years ago
  9. 2c992a0 backport computed gotos (#4753) by Benjamin Peterson · 9 years ago
  10. 2b565bb Issue #18028: Fix aliasing issue in READ_TIMESTAMP() of ceval.c on x86_64, by Victor Stinner · 10 years ago
  11. b9a4501 Issue #21963: backout issue #1856 patch (avoid crashes and lockups when by Antoine Pitrou · 10 years ago
  12. a86c091 Issue #22453: Fexed reference leaks when format error messages in ceval.c. by Serhiy Storchaka · 10 years ago
  13. d2903bd restore runtime exec test (#21591) by Benjamin Peterson · 10 years ago
  14. 9b1d670 Issue #21591: Handle exec backwards compatibility in the AST builder. by Dirkjan Ochtman · 10 years ago
  15. 1c78e6d check if the thread is finalizing after retaking the GIL by Benjamin Peterson · 10 years ago
  16. c0bc4ef avoid crashes and lockups from daemon threads during interpreter shutdown (#1856) by Benjamin Peterson · 10 years ago
  17. 98a9722 Issue #20437: Fixed 43 potential bugs when deleting objects references. by Serhiy Storchaka · 11 years ago
  18. c3349cd port 8d05f697acd4 (#11627) by Benjamin Peterson · 13 years ago
  19. c2077b0 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
  20. 4c29e1c Merged revisions 87796 via svnmerge from by David Malcolm · 14 years ago
  21. da4faba Rolled back revisions 85003 via svnmerge from by Benjamin Peterson · 14 years ago
  22. 2af8404 Merged revisions 85003 via svnmerge from by Benjamin Peterson · 14 years ago
  23. 7ff7825 Issue #8930: Remaining indentation fixes after the Grand Unified Indenting. by Stefan Krah · 14 years ago
  24. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 14 years ago
  25. 2ee5183 Remove an unneeded variable increment. by Brett Cannon · 14 years ago
  26. 417439e Partially revert the over-reaching r80813. by Brett Cannon · 14 years ago
  27. 0b03f10 Remove three unneeded variable assignments. by Brett Cannon · 14 years ago
  28. 76c8649 Issue #8276: PyEval_CallObject() is now only available in macro form. The by Antoine Pitrou · 15 years ago
  29. bb9d726 take into account keyword arguments when passing too many args by Benjamin Peterson · 15 years ago
  30. 9654589 improve error message from passing inadequate number of keyword arguments #6474 by Benjamin Peterson · 15 years ago
  31. 88e7eba co_varnames is certainly a tuple, so let's not waste time finding out by Benjamin Peterson · 15 years ago
  32. d51b259 remove pointless condition by Benjamin Peterson · 15 years ago
  33. 56472c2 flatten condition by Benjamin Peterson · 15 years ago
  34. 9c4742e more specific exception for wrong kind of raise #8082 by Benjamin Peterson · 15 years ago
  35. ee46101 remove pointless error checking by Benjamin Peterson · 15 years ago
  36. 565d785 normalize exceptions passed to the __exit__ method #7853 by Benjamin Peterson · 15 years ago
  37. b646547 Issue #2333: Backport set and dict comprehensions syntax. by Alexandre Vassalotti · 15 years ago
  38. ee936a2 Issue #2335: Backport set literals syntax from Python 3.x. by Alexandre Vassalotti · 15 years ago
  39. 3439818 Issue #7406: Fix some occurrences of potential signed overflow in int by Mark Dickinson · 15 years ago
  40. 504a151 Issue #6603: Fix --with-tsc build failures on x86-64 that resulted by Mark Dickinson · 15 years ago
  41. 4a3cf19 small optimization: avoid popping the current block until we have to by Benjamin Peterson · 15 years ago
  42. 8f7b94e use stack macros by Benjamin Peterson · 15 years ago
  43. b8338ab add two generic macros for peeking and setting in the stack by Benjamin Peterson · 15 years ago
  44. 46dbe27 Issue #5330: C functions called with keyword arguments were not reported by by Antoine Pitrou · 15 years ago
  45. 1880d8b add a SETUP_WITH opcode by Benjamin Peterson · 15 years ago
  46. 655d835 Issue #6042: by Jeffrey Yasskin · 15 years ago
  47. f7f858d Issue 5954, PyFrame_GetLineNumber: by Jeffrey Yasskin · 15 years ago
  48. 68d6852 Backport r69961 to trunk, replacing JUMP_IF_{TRUE,FALSE} with by Jeffrey Yasskin · 16 years ago
  49. 8725dce Issue 5176: special-case string formatting in BINARY_MODULO implementation. This shows a modest (1-3%) speed-up in templating systems, for example. by Collin Winter · 16 years ago
  50. 9e58a37 Silence 'arg may be used uninitialized in this function' warning from gcc. by Mark Dickinson · 16 years ago
  51. 78821dd fix building the core with --disable-unicode by Benjamin Peterson · 16 years ago
  52. e18ef19 allow unicode keyword arguments for the ** syntax #4978 by Benjamin Peterson · 16 years ago
  53. 0e91938 Issue 4293: Make Py_AddPendingCall() thread safe by Kristján Valur Jónsson · 16 years ago
  54. d0c3515 Issue #2183: Simplify and optimize bytecode for list comprehensions. by Antoine Pitrou · 16 years ago
  55. ad9b599 #4559: When a context manager's __exit__() method returns an object whose by Amaury Forgeot d'Arc · 16 years ago
  56. 2d873bd Issue 4597: Fix several cases in EvalFrameEx where an exception could be by Jeffrey Yasskin · 16 years ago
  57. fd8a1ec Speed up Python (according to pybench and 2to3-on-itself) by 1-2% by caching by Jeffrey Yasskin · 16 years ago
  58. c2cc80c Raymond's patch for #1819: speedup function calls with named parameters by Antoine Pitrou · 16 years ago
  59. 5e62ca4 Apply patch for 874900: threading module can deadlock after fork by Jesse Noller · 16 years ago
  60. afae11e Update comment on prediction macros. by Raymond Hettinger · 16 years ago
  61. aa76d77 Add a comment about incref'ing w. by Georg Brandl · 16 years ago
  62. bdd941f #3242: fix a crash in "print", if sys.stdout is set to a custom object, by Amaury Forgeot d'Arc · 16 years ago
  63. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  64. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  65. f19a7b9 A little reformating of Py3k warnings by Benjamin Peterson · 16 years ago
  66. 9f4f481 Use PyErr_WarnPy3k throughout by Benjamin Peterson · 16 years ago
  67. d5b635f Make Py3k warnings consistent w.r.t. punctuation; also respect the by Georg Brandl · 17 years ago
  68. 504153d Issue #2341: Add a Py3k warning when raising an exception that doesn't by Guido van Rossum · 17 years ago
  69. 20bda58 Clean up the Py3k warnings for non-BaseException-subclasses a bit. We by Guido van Rossum · 17 years ago
  70. 04edb52 - Issue #2371: Add a Py3k warning when catching an exception that by Guido van Rossum · 17 years ago
  71. 7af53be Speed up with statements by storing the __exit__ method on the stack instead of in a temp variable (bumps the magic number for pyc files) by Nick Coghlan · 17 years ago
  72. 9063a99 compile.c always emits END_FINALLY after WITH_CLEANUP, so predict that in by Jeffrey Yasskin · 17 years ago
  73. 8250fbe Reduce buffer size since we do not need 1k by Neal Norwitz · 17 years ago
  74. 1d9a9ea Fix two crashers. by Guido van Rossum · 17 years ago
  75. 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
  76. fd7ed40 Give meaning to the oparg for BUILD_MAP: estimated size of the dictionary. by Raymond Hettinger · 17 years ago
  77. effde12 Speed-up dictionary constructor by about 10%. by Raymond Hettinger · 17 years ago
  78. 52729ac Silence a warning about an unsed variable in debug builds by Christian Heimes · 17 years ago
  79. 2d3953b Fix typo. by Georg Brandl · 17 years ago
  80. 0d75f09 Merge from py3k branch: by Amaury Forgeot d'Arc · 17 years ago
  81. dc1d1ba Add build option for faster loop execution. by Raymond Hettinger · 17 years ago
  82. e217602 Try harder to stay within the 79-column limit. There's still two places that go (way) over, but those are harder to fix without suffering in readability. by Thomas Wouters · 17 years ago
  83. ae406c6 Whitespace cleanup. by Thomas Wouters · 17 years ago
  84. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  85. 2134e75 Patch #1686487: you can now pass any mapping after '**' in function calls. by Georg Brandl · 17 years ago
  86. bc1b5f1 Remove an XXX that is unnecessary. by Georg Brandl · 17 years ago
  87. 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
  88. 5cb76c1 Patch #1682205: a TypeError while unpacking an iterable is no longer by Georg Brandl · 18 years ago
  89. 0fca97a Patch #1674228: when assigning a slice (old-style), check for the by Georg Brandl · 18 years ago
  90. 7c1e347 Reformat long lines. by Jeremy Hylton · 18 years ago
  91. 714b112 Put declarations before code. by Jeremy Hylton · 18 years ago
  92. c5ceb25 Fix crash in exec when unicode filename can't be decoded. by Jeremy Hylton · 18 years ago
  93. 129bd52 No more raising of string exceptions! by Brett Cannon · 18 years ago
  94. 4bd97d4 SF# 1409443: Expand comment to cover the interaction between f->f_lasti and the PREDICT macros. by Raymond Hettinger · 18 years ago
  95. 7037085 Forgot a case where the locals can now be a general mapping by Armin Rigo · 18 years ago
  96. 1f3ebe0 [Bug #1542016] Report PCALL_POP value. This makes the return value of sys.callstats() match its docstring. by Andrew M. Kuchling · 18 years ago
  97. df6a649 Move/copy assert for tstate != NULL before first use. by Neal Norwitz · 18 years ago
  98. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
  99. 421c131 Whoops, how did that get in there. :-) Revert all the parts of 51227 that were not supposed to go it. Only Modules/_ctypes/cfields.c was supposed to be changed by Neal Norwitz · 18 years ago
  100. 6b4953f Check returned pointer is valid. Klocwork #233 by Neal Norwitz · 18 years ago