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