- f7f858d Issue 5954, PyFrame_GetLineNumber: by Jeffrey Yasskin · 15 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 · 16 years ago
- 5e62ca4 Apply patch for 874900: threading module can deadlock after fork by Jesse Noller · 16 years ago
- afae11e Update comment on prediction macros. by Raymond Hettinger · 16 years ago
- aa76d77 Add a comment about incref'ing w. by Georg Brandl · 16 years ago
- bdd941f #3242: fix a crash in "print", if sys.stdout is set to a custom object, by Amaury Forgeot d'Arc · 16 years ago
- dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
- 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 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 · 17 years ago
- dc1d1ba Add build option for faster loop execution. by Raymond Hettinger · 17 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 · 17 years ago
- ae406c6 Whitespace cleanup. by Thomas Wouters · 17 years ago
- 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
- 2134e75 Patch #1686487: you can now pass any mapping after '**' in function calls. by Georg Brandl · 17 years ago
- bc1b5f1 Remove an XXX that is unnecessary. by Georg Brandl · 17 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 · 18 years ago
- df6a649 Move/copy assert for tstate != NULL before first use. by Neal Norwitz · 18 years ago
- 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 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 · 18 years ago
- 6b4953f Check returned pointer is valid. Klocwork #233 by Neal Norwitz · 18 years ago
- 97ff047 Concatenation on a long string breaks (SF #1526585). by Armin Rigo · 18 years ago
- 245ce8d i and j are initialized below when used. No need to do it twice by Neal Norwitz · 18 years ago
- b9845e7 Get rid of f_restricted too. Doc the other 4 ints that were already removed by Neal Norwitz · 18 years ago
- 0e8bd7e Patch #1495999: Part two of Windows CE changes. by Martin v. Löwis · 18 years ago
- 35f6d36 [ 1497053 ] Let dicts propagate the exceptions in user __eq__(). by Armin Rigo · 18 years ago
- 7a83089 needforspeed: backed out the Py_LOCAL-isation of ceval; the massive in- by Fredrik Lundh · 18 years ago
- 7df5e7f Patch 1145039. by Tim Peters · 18 years ago
- 1b94940 Py_LOCAL shouldn't be used for data; it works for some .NET 2003 compilers, by Fredrik Lundh · 18 years ago
- 57640f5 needforspeed: added PY_LOCAL_AGGRESSIVE macro to enable "aggressive" by Fredrik Lundh · 18 years ago
- b8b3c8e needforspeed: added Py_LOCAL macro, based on the LOCAL macro used by Fredrik Lundh · 18 years ago
- 684fd0c Replace PyObject_CallFunction calls with only object args by Georg Brandl · 18 years ago
- cebbefc Applied patch 1337051 by Neal Norwitz, saving 4 ints on frame objects. by Richard Jones · 18 years ago
- 02104df Fix #132 from Coverity, retval could have been derefed by Neal Norwitz · 18 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
- a863d33 low-hanging fruit in Python/ - g++ still hates all the enum_kind declarations by Anthony Baxter · 19 years ago
- 2ba9661 SF Patch #1463867: Improved generator finalization to allow generators by Phillip J. Eby · 19 years ago
- d34fa52 answer a question from a comment by Armin Rigo · 19 years ago
- 9076842 Fix a ssize_t issue by Neal Norwitz · 19 years ago
- f669436 Um, I thought I'd already checked this in. by Guido van Rossum · 19 years ago
- 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 19 years ago
- 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 19 years ago
- 814e938 Use Py_ssize_t since we are working with list size below by Neal Norwitz · 19 years ago
- 7f59732 Put back the essence of Jeremy's original XXX comment. by Thomas Wouters · 19 years ago
- bf36409 PEP 352 implementation. Creates a new base class, BaseException, which has an by Brett Cannon · 19 years ago
- 1a5e21e Updates to the with-statement: by Guido van Rossum · 19 years ago
- f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 19 years ago
- a7446e3 Check the return code for PyErr_Warn() when warning about raising string by Brett Cannon · 19 years ago
- c2e2074 PEP 343 -- the with-statement. by Guido van Rossum · 19 years ago
- 1dc5a84 Bug #801349: document that start/stop/step slice arguments can be None by Georg Brandl · 19 years ago
- dde99d2 Remove size constraints in SLICE opcodes. by Martin v. Löwis · 19 years ago
- 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
- 03ca23d Explain the clearing of the stack in a comment in Python/ceval.c's by Thomas Wouters · 19 years ago
- af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
- 5f5153e Fix some mods that got dropped from the AST merge by Neal Norwitz · 19 years ago
- 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
- 1c2d7e5 clean-up tracing of C functions. In particular, don't call the trace func by Armin Rigo · 19 years ago
- e2eca0b Port from the Python 2.4 branch, patches for SF bug # 900092, by Barry Warsaw · 19 years ago
- 0d6615f PEP 342 implementation. Per Guido's comments, the generator throw() by Phillip J. Eby · 19 years ago
- c9371d4 Fix signedness of various char variables to stop causing a warning under gcc 4. by Brett Cannon · 19 years ago
- 55fa66d Add comments about PyThreadState and the usage of its fields. by Brett Cannon · 19 years ago
- b6fa281 Make a handy macro, Py_DEFAULT_RECURSION_LIMIT to allow to define by Hye-Shik Chang · 20 years ago
- 75eabd2 Change the name of the macro used by --with-tsc builds to the less by Michael W. Hudson · 20 years ago
- c9a4762 comment tweak by Skip Montanaro · 20 years ago