1. 4c29e1c Merged revisions 87796 via svnmerge from by David Malcolm · 14 years ago
  2. da4faba Rolled back revisions 85003 via svnmerge from by Benjamin Peterson · 14 years ago
  3. 2af8404 Merged revisions 85003 via svnmerge from by Benjamin Peterson · 14 years ago
  4. 7ff7825 Issue #8930: Remaining indentation fixes after the Grand Unified Indenting. by Stefan Krah · 14 years ago
  5. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 14 years ago
  6. 2ee5183 Remove an unneeded variable increment. by Brett Cannon · 14 years ago
  7. 417439e Partially revert the over-reaching r80813. by Brett Cannon · 14 years ago
  8. 0b03f10 Remove three unneeded variable assignments. by Brett Cannon · 14 years ago
  9. 76c8649 Issue #8276: PyEval_CallObject() is now only available in macro form. The by Antoine Pitrou · 15 years ago
  10. bb9d726 take into account keyword arguments when passing too many args by Benjamin Peterson · 15 years ago
  11. 9654589 improve error message from passing inadequate number of keyword arguments #6474 by Benjamin Peterson · 15 years ago
  12. 88e7eba co_varnames is certainly a tuple, so let's not waste time finding out by Benjamin Peterson · 15 years ago
  13. d51b259 remove pointless condition by Benjamin Peterson · 15 years ago
  14. 56472c2 flatten condition by Benjamin Peterson · 15 years ago
  15. 9c4742e more specific exception for wrong kind of raise #8082 by Benjamin Peterson · 15 years ago
  16. ee46101 remove pointless error checking by Benjamin Peterson · 15 years ago
  17. 565d785 normalize exceptions passed to the __exit__ method #7853 by Benjamin Peterson · 15 years ago
  18. b646547 Issue #2333: Backport set and dict comprehensions syntax. by Alexandre Vassalotti · 15 years ago
  19. ee936a2 Issue #2335: Backport set literals syntax from Python 3.x. by Alexandre Vassalotti · 15 years ago
  20. 3439818 Issue #7406: Fix some occurrences of potential signed overflow in int by Mark Dickinson · 15 years ago
  21. 504a151 Issue #6603: Fix --with-tsc build failures on x86-64 that resulted by Mark Dickinson · 15 years ago
  22. 4a3cf19 small optimization: avoid popping the current block until we have to by Benjamin Peterson · 15 years ago
  23. 8f7b94e use stack macros by Benjamin Peterson · 15 years ago
  24. b8338ab add two generic macros for peeking and setting in the stack by Benjamin Peterson · 15 years ago
  25. 46dbe27 Issue #5330: C functions called with keyword arguments were not reported by by Antoine Pitrou · 15 years ago
  26. 1880d8b add a SETUP_WITH opcode by Benjamin Peterson · 15 years ago
  27. 655d835 Issue #6042: by Jeffrey Yasskin · 15 years ago
  28. f7f858d Issue 5954, PyFrame_GetLineNumber: by Jeffrey Yasskin · 15 years ago
  29. 68d6852 Backport r69961 to trunk, replacing JUMP_IF_{TRUE,FALSE} with by Jeffrey Yasskin · 16 years ago
  30. 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
  31. 9e58a37 Silence 'arg may be used uninitialized in this function' warning from gcc. by Mark Dickinson · 16 years ago
  32. 78821dd fix building the core with --disable-unicode by Benjamin Peterson · 16 years ago
  33. e18ef19 allow unicode keyword arguments for the ** syntax #4978 by Benjamin Peterson · 16 years ago
  34. 0e91938 Issue 4293: Make Py_AddPendingCall() thread safe by Kristján Valur Jónsson · 16 years ago
  35. d0c3515 Issue #2183: Simplify and optimize bytecode for list comprehensions. by Antoine Pitrou · 16 years ago
  36. ad9b599 #4559: When a context manager's __exit__() method returns an object whose by Amaury Forgeot d'Arc · 16 years ago
  37. 2d873bd Issue 4597: Fix several cases in EvalFrameEx where an exception could be by Jeffrey Yasskin · 16 years ago
  38. fd8a1ec Speed up Python (according to pybench and 2to3-on-itself) by 1-2% by caching by Jeffrey Yasskin · 16 years ago
  39. c2cc80c Raymond's patch for #1819: speedup function calls with named parameters by Antoine Pitrou · 16 years ago
  40. 5e62ca4 Apply patch for 874900: threading module can deadlock after fork by Jesse Noller · 16 years ago
  41. afae11e Update comment on prediction macros. by Raymond Hettinger · 16 years ago
  42. aa76d77 Add a comment about incref'ing w. by Georg Brandl · 16 years ago
  43. bdd941f #3242: fix a crash in "print", if sys.stdout is set to a custom object, by Amaury Forgeot d'Arc · 16 years ago
  44. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  45. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  46. f19a7b9 A little reformating of Py3k warnings by Benjamin Peterson · 17 years ago
  47. 9f4f481 Use PyErr_WarnPy3k throughout by Benjamin Peterson · 17 years ago
  48. d5b635f Make Py3k warnings consistent w.r.t. punctuation; also respect the by Georg Brandl · 17 years ago
  49. 504153d Issue #2341: Add a Py3k warning when raising an exception that doesn't by Guido van Rossum · 17 years ago
  50. 20bda58 Clean up the Py3k warnings for non-BaseException-subclasses a bit. We by Guido van Rossum · 17 years ago
  51. 04edb52 - Issue #2371: Add a Py3k warning when catching an exception that by Guido van Rossum · 17 years ago
  52. 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
  53. 9063a99 compile.c always emits END_FINALLY after WITH_CLEANUP, so predict that in by Jeffrey Yasskin · 17 years ago
  54. 8250fbe Reduce buffer size since we do not need 1k by Neal Norwitz · 17 years ago
  55. 1d9a9ea Fix two crashers. by Guido van Rossum · 17 years ago
  56. 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
  57. fd7ed40 Give meaning to the oparg for BUILD_MAP: estimated size of the dictionary. by Raymond Hettinger · 17 years ago
  58. effde12 Speed-up dictionary constructor by about 10%. by Raymond Hettinger · 17 years ago
  59. 52729ac Silence a warning about an unsed variable in debug builds by Christian Heimes · 17 years ago
  60. 2d3953b Fix typo. by Georg Brandl · 17 years ago
  61. 0d75f09 Merge from py3k branch: by Amaury Forgeot d'Arc · 17 years ago
  62. dc1d1ba Add build option for faster loop execution. by Raymond Hettinger · 17 years ago
  63. 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
  64. ae406c6 Whitespace cleanup. by Thomas Wouters · 17 years ago
  65. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  66. 2134e75 Patch #1686487: you can now pass any mapping after '**' in function calls. by Georg Brandl · 17 years ago
  67. bc1b5f1 Remove an XXX that is unnecessary. by Georg Brandl · 17 years ago
  68. 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
  69. 5cb76c1 Patch #1682205: a TypeError while unpacking an iterable is no longer by Georg Brandl · 18 years ago
  70. 0fca97a Patch #1674228: when assigning a slice (old-style), check for the by Georg Brandl · 18 years ago
  71. 7c1e347 Reformat long lines. by Jeremy Hylton · 18 years ago
  72. 714b112 Put declarations before code. by Jeremy Hylton · 18 years ago
  73. c5ceb25 Fix crash in exec when unicode filename can't be decoded. by Jeremy Hylton · 18 years ago
  74. 129bd52 No more raising of string exceptions! by Brett Cannon · 18 years ago
  75. 4bd97d4 SF# 1409443: Expand comment to cover the interaction between f->f_lasti and the PREDICT macros. by Raymond Hettinger · 18 years ago
  76. 7037085 Forgot a case where the locals can now be a general mapping by Armin Rigo · 18 years ago
  77. 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
  78. df6a649 Move/copy assert for tstate != NULL before first use. by Neal Norwitz · 18 years ago
  79. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
  80. 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
  81. 6b4953f Check returned pointer is valid. Klocwork #233 by Neal Norwitz · 18 years ago
  82. 97ff047 Concatenation on a long string breaks (SF #1526585). by Armin Rigo · 18 years ago
  83. 245ce8d i and j are initialized below when used. No need to do it twice by Neal Norwitz · 18 years ago
  84. b9845e7 Get rid of f_restricted too. Doc the other 4 ints that were already removed by Neal Norwitz · 18 years ago
  85. 0e8bd7e Patch #1495999: Part two of Windows CE changes. by Martin v. Löwis · 18 years ago
  86. 35f6d36 [ 1497053 ] Let dicts propagate the exceptions in user __eq__(). by Armin Rigo · 18 years ago
  87. 7a83089 needforspeed: backed out the Py_LOCAL-isation of ceval; the massive in- by Fredrik Lundh · 18 years ago
  88. 7df5e7f Patch 1145039. by Tim Peters · 18 years ago
  89. 1b94940 Py_LOCAL shouldn't be used for data; it works for some .NET 2003 compilers, by Fredrik Lundh · 18 years ago
  90. 57640f5 needforspeed: added PY_LOCAL_AGGRESSIVE macro to enable "aggressive" by Fredrik Lundh · 18 years ago
  91. b8b3c8e needforspeed: added Py_LOCAL macro, based on the LOCAL macro used by Fredrik Lundh · 18 years ago
  92. 684fd0c Replace PyObject_CallFunction calls with only object args by Georg Brandl · 18 years ago
  93. cebbefc Applied patch 1337051 by Neal Norwitz, saving 4 ints on frame objects. by Richard Jones · 18 years ago
  94. 02104df Fix #132 from Coverity, retval could have been derefed by Neal Norwitz · 18 years ago
  95. b255069 Micro optimization. In the first case, we know that frame->f_exc_type by Neal Norwitz · 18 years ago
  96. 6685128 Fix more ssize_t issues. by Martin v. Löwis · 19 years ago
  97. 79cdce3 Teach Python/ceval.c's inlining of 'str += str' about Py_ssize_t sizes; this by Thomas Wouters · 19 years ago
  98. a4ebc13 Refactor: Move code that uses co_lnotab from ceval to codeobject by Jeremy Hylton · 19 years ago
  99. a863d33 low-hanging fruit in Python/ - g++ still hates all the enum_kind declarations by Anthony Baxter · 19 years ago
  100. 2ba9661 SF Patch #1463867: Improved generator finalization to allow generators by Phillip J. Eby · 19 years ago