1. 8f7b94e use stack macros by Benjamin Peterson · 15 years ago
  2. b8338ab add two generic macros for peeking and setting in the stack by Benjamin Peterson · 15 years ago
  3. 46dbe27 Issue #5330: C functions called with keyword arguments were not reported by by Antoine Pitrou · 15 years ago
  4. 1880d8b add a SETUP_WITH opcode by Benjamin Peterson · 15 years ago
  5. 655d835 Issue #6042: by Jeffrey Yasskin · 15 years ago
  6. f7f858d Issue 5954, PyFrame_GetLineNumber: by Jeffrey Yasskin · 15 years ago
  7. 68d6852 Backport r69961 to trunk, replacing JUMP_IF_{TRUE,FALSE} with by Jeffrey Yasskin · 15 years ago
  8. 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 · 15 years ago
  9. 9e58a37 Silence 'arg may be used uninitialized in this function' warning from gcc. by Mark Dickinson · 15 years ago
  10. 78821dd fix building the core with --disable-unicode by Benjamin Peterson · 15 years ago
  11. e18ef19 allow unicode keyword arguments for the ** syntax #4978 by Benjamin Peterson · 16 years ago
  12. 0e91938 Issue 4293: Make Py_AddPendingCall() thread safe by Kristján Valur Jónsson · 16 years ago
  13. d0c3515 Issue #2183: Simplify and optimize bytecode for list comprehensions. by Antoine Pitrou · 16 years ago
  14. ad9b599 #4559: When a context manager's __exit__() method returns an object whose by Amaury Forgeot d'Arc · 16 years ago
  15. 2d873bd Issue 4597: Fix several cases in EvalFrameEx where an exception could be by Jeffrey Yasskin · 16 years ago
  16. fd8a1ec Speed up Python (according to pybench and 2to3-on-itself) by 1-2% by caching by Jeffrey Yasskin · 16 years ago
  17. c2cc80c Raymond's patch for #1819: speedup function calls with named parameters by Antoine Pitrou · 16 years ago
  18. 5e62ca4 Apply patch for 874900: threading module can deadlock after fork by Jesse Noller · 16 years ago
  19. afae11e Update comment on prediction macros. by Raymond Hettinger · 16 years ago
  20. aa76d77 Add a comment about incref'ing w. by Georg Brandl · 16 years ago
  21. bdd941f #3242: fix a crash in "print", if sys.stdout is set to a custom object, by Amaury Forgeot d'Arc · 16 years ago
  22. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  23. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  24. f19a7b9 A little reformating of Py3k warnings by Benjamin Peterson · 16 years ago
  25. 9f4f481 Use PyErr_WarnPy3k throughout by Benjamin Peterson · 16 years ago
  26. d5b635f Make Py3k warnings consistent w.r.t. punctuation; also respect the by Georg Brandl · 16 years ago
  27. 504153d Issue #2341: Add a Py3k warning when raising an exception that doesn't by Guido van Rossum · 16 years ago
  28. 20bda58 Clean up the Py3k warnings for non-BaseException-subclasses a bit. We by Guido van Rossum · 16 years ago
  29. 04edb52 - Issue #2371: Add a Py3k warning when catching an exception that by Guido van Rossum · 16 years ago
  30. 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 · 16 years ago
  31. 9063a99 compile.c always emits END_FINALLY after WITH_CLEANUP, so predict that in by Jeffrey Yasskin · 16 years ago
  32. 8250fbe Reduce buffer size since we do not need 1k by Neal Norwitz · 16 years ago
  33. 1d9a9ea Fix two crashers. by Guido van Rossum · 17 years ago
  34. 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
  35. fd7ed40 Give meaning to the oparg for BUILD_MAP: estimated size of the dictionary. by Raymond Hettinger · 17 years ago
  36. effde12 Speed-up dictionary constructor by about 10%. by Raymond Hettinger · 17 years ago
  37. 52729ac Silence a warning about an unsed variable in debug builds by Christian Heimes · 17 years ago
  38. 2d3953b Fix typo. by Georg Brandl · 17 years ago
  39. 0d75f09 Merge from py3k branch: by Amaury Forgeot d'Arc · 17 years ago
  40. dc1d1ba Add build option for faster loop execution. by Raymond Hettinger · 17 years ago
  41. 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
  42. ae406c6 Whitespace cleanup. by Thomas Wouters · 17 years ago
  43. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  44. 2134e75 Patch #1686487: you can now pass any mapping after '**' in function calls. by Georg Brandl · 17 years ago
  45. bc1b5f1 Remove an XXX that is unnecessary. by Georg Brandl · 17 years ago
  46. 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 · 17 years ago
  47. 5cb76c1 Patch #1682205: a TypeError while unpacking an iterable is no longer by Georg Brandl · 17 years ago
  48. 0fca97a Patch #1674228: when assigning a slice (old-style), check for the by Georg Brandl · 17 years ago
  49. 7c1e347 Reformat long lines. by Jeremy Hylton · 17 years ago
  50. 714b112 Put declarations before code. by Jeremy Hylton · 17 years ago
  51. c5ceb25 Fix crash in exec when unicode filename can't be decoded. by Jeremy Hylton · 17 years ago
  52. 129bd52 No more raising of string exceptions! by Brett Cannon · 17 years ago
  53. 4bd97d4 SF# 1409443: Expand comment to cover the interaction between f->f_lasti and the PREDICT macros. by Raymond Hettinger · 18 years ago
  54. 7037085 Forgot a case where the locals can now be a general mapping by Armin Rigo · 18 years ago
  55. 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
  56. df6a649 Move/copy assert for tstate != NULL before first use. by Neal Norwitz · 18 years ago
  57. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
  58. 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
  59. 6b4953f Check returned pointer is valid. Klocwork #233 by Neal Norwitz · 18 years ago
  60. 97ff047 Concatenation on a long string breaks (SF #1526585). by Armin Rigo · 18 years ago
  61. 245ce8d i and j are initialized below when used. No need to do it twice by Neal Norwitz · 18 years ago
  62. b9845e7 Get rid of f_restricted too. Doc the other 4 ints that were already removed by Neal Norwitz · 18 years ago
  63. 0e8bd7e Patch #1495999: Part two of Windows CE changes. by Martin v. Löwis · 18 years ago
  64. 35f6d36 [ 1497053 ] Let dicts propagate the exceptions in user __eq__(). by Armin Rigo · 18 years ago
  65. 7a83089 needforspeed: backed out the Py_LOCAL-isation of ceval; the massive in- by Fredrik Lundh · 18 years ago
  66. 7df5e7f Patch 1145039. by Tim Peters · 18 years ago
  67. 1b94940 Py_LOCAL shouldn't be used for data; it works for some .NET 2003 compilers, by Fredrik Lundh · 18 years ago
  68. 57640f5 needforspeed: added PY_LOCAL_AGGRESSIVE macro to enable "aggressive" by Fredrik Lundh · 18 years ago
  69. b8b3c8e needforspeed: added Py_LOCAL macro, based on the LOCAL macro used by Fredrik Lundh · 18 years ago
  70. 684fd0c Replace PyObject_CallFunction calls with only object args by Georg Brandl · 18 years ago
  71. cebbefc Applied patch 1337051 by Neal Norwitz, saving 4 ints on frame objects. by Richard Jones · 18 years ago
  72. 02104df Fix #132 from Coverity, retval could have been derefed by Neal Norwitz · 18 years ago
  73. b255069 Micro optimization. In the first case, we know that frame->f_exc_type by Neal Norwitz · 18 years ago
  74. 6685128 Fix more ssize_t issues. by Martin v. Löwis · 18 years ago
  75. 79cdce3 Teach Python/ceval.c's inlining of 'str += str' about Py_ssize_t sizes; this by Thomas Wouters · 18 years ago
  76. a4ebc13 Refactor: Move code that uses co_lnotab from ceval to codeobject by Jeremy Hylton · 18 years ago
  77. a863d33 low-hanging fruit in Python/ - g++ still hates all the enum_kind declarations by Anthony Baxter · 18 years ago
  78. 2ba9661 SF Patch #1463867: Improved generator finalization to allow generators by Phillip J. Eby · 18 years ago
  79. d34fa52 answer a question from a comment by Armin Rigo · 18 years ago
  80. 9076842 Fix a ssize_t issue by Neal Norwitz · 18 years ago
  81. f669436 Um, I thought I'd already checked this in. by Guido van Rossum · 18 years ago
  82. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  83. 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 18 years ago
  84. 814e938 Use Py_ssize_t since we are working with list size below by Neal Norwitz · 18 years ago
  85. 7f59732 Put back the essence of Jeremy's original XXX comment. by Thomas Wouters · 18 years ago
  86. bf36409 PEP 352 implementation. Creates a new base class, BaseException, which has an by Brett Cannon · 18 years ago
  87. 1a5e21e Updates to the with-statement: by Guido van Rossum · 18 years ago
  88. f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 18 years ago
  89. a7446e3 Check the return code for PyErr_Warn() when warning about raising string by Brett Cannon · 18 years ago
  90. c2e2074 PEP 343 -- the with-statement. by Guido van Rossum · 18 years ago
  91. 1dc5a84 Bug #801349: document that start/stop/step slice arguments can be None by Georg Brandl · 18 years ago
  92. dde99d2 Remove size constraints in SLICE opcodes. by Martin v. Löwis · 18 years ago
  93. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  94. 03ca23d Explain the clearing of the stack in a comment in Python/ceval.c's by Thomas Wouters · 18 years ago
  95. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  96. 5f5153e Fix some mods that got dropped from the AST merge by Neal Norwitz · 19 years ago
  97. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  98. 1c2d7e5 clean-up tracing of C functions. In particular, don't call the trace func by Armin Rigo · 19 years ago
  99. e2eca0b Port from the Python 2.4 branch, patches for SF bug # 900092, by Barry Warsaw · 19 years ago
  100. 0d6615f PEP 342 implementation. Per Guido's comments, the generator throw() by Phillip J. Eby · 19 years ago