- 1e534b5 Fix a crasher where Python code managed to infinitely recurse in C code without by Brett Cannon · 17 years ago
- b90f52e Revert compile.c changes that shouldn't have been included in previous checkin by Nick Coghlan · 17 years ago
- 3af0e78 Revert misguided attempt at fixing incompatibility between -m and -i switches (better fix coming soon) by Nick Coghlan · 17 years ago
- add36e5 Second half of #1752175: #ifdef out references to PyImport_DynLoadFiletab if HAVE_DYNAMIC_LOADING is not defined. by Georg Brandl · 17 years ago
- d8672aa Fix compile.c so that it records 0.0 and -0.0 as separate constants in a code by Alex Martelli · 17 years ago
- d7e9f60 Revert accidental checkins from last commit. by Georg Brandl · 17 years ago
- fdca6d8 Demand version 2.5.1 since 2.5 has a bug with codecs.open context managers. by Georg Brandl · 17 years ago
- 69ff5ac Place #ifdef Py_USING_UNICODE around decode_unicode(). by Georg Brandl · 17 years ago
- 2ef7582 Handle errors when generating a warning. by Neal Norwitz · 17 years ago
- 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
- b6ac23c SF patch# 1755885 by Kurt Kaiser: show location of Unicode escape errors. by Guido van Rossum · 17 years ago
- 84a3efe Add T_PYSSIZET in structmember.h: This can be used for Py_ssize_t members. by Walter Dörwald · 17 years ago
- 6371cd8 Patch #1733960: Allow T_LONGLONG to accept ints. Will backport to 2.5. by Martin v. Löwis · 17 years ago
- 080b598 Use macro version of GET_SIZE to avoid Coverity warning (#150) about a possible error. by Neal Norwitz · 17 years ago
- e06cf45 Disallow function calls like foo(None=1). by Georg Brandl · 17 years ago
- a5ea689 Bug #1722484: remove docstrings again when running with -OO. by Georg Brandl · 17 years ago
- 2fca81c Fix indentation (whitespace only). by Neal Norwitz · 17 years ago
- 629ec26 Include <windows.h> after python.h, so that WINNT is properly set before windows.h is included. Fixes warnings in PC builds. by Kristján Valur Jónsson · 17 years ago
- df25efe Add a bunch more deprecation warnings for builtins that are going away in 3.0 by Neal Norwitz · 17 years ago
- 8b2bfbc Add -3 option to the interpreter to warn about features that are by Neal Norwitz · 17 years ago
- 2134e75 Patch #1686487: you can now pass any mapping after '**' in function calls. by Georg Brandl · 17 years ago
- 6290305 Backport PEP 3110's new 'except' syntax to 2.6. by Collin Winter · 17 years ago
- f6b0e4d Last try for tweaking the max stack depth. 5000 was the original value, by Neal Norwitz · 17 years ago
- 4f82bc3 Set the depth to something very small to try to determine if the by Neal Norwitz · 17 years ago
- 117ef08 Reduce the max stack depth to see if this fixes the segfaults on by Neal Norwitz · 17 years ago
- b1a9b37 Fix bug in marshal where bad data would cause a segfault due to by Neal Norwitz · 17 years ago
- bc1b5f1 Remove an XXX that is unnecessary. by Georg Brandl · 18 years ago
- f030394 Fix problems in x64 build that were discovered by the testsuite: by Kristján Valur Jónsson · 18 years ago
- dc9b32e Handle a couple of uncaught errors. This should be backported by Neal Norwitz · 18 years ago
- b8ae3d0 Actually raise an exception before calling ast_error_finish. by Georg Brandl · 18 years ago
- f371cb1 Remove obsolete comment. Importing of .dll files has been discontinued, only .pyd files supported on windows now. by Kristján Valur Jónsson · 18 years ago
- 67387fb Make pythoncore compile cleanly with VisualStudio 2005. Used an explicit typecast to get a 64 bit integer, and undefined the Yield macro that conflicts with winbase.h by Kristján Valur Jónsson · 18 years ago
- 17b8e97 Merge change 54909 from release25-maint: Fix several minor issues discovered using code analysis in VisualStudio 2005 Team Edition by Kristján Valur Jónsson · 18 years ago
- 68cdf8a SF #1701207, Fix bogus assertion (and test it!) by Neal Norwitz · 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
- aa754b7 Remove unused file spotted by Paul Hankin by Neal Norwitz · 18 years ago
- dd2cf1c Clean up formatting of this file. by Jeremy Hylton · 18 years ago
- 77c67bd Patch #1642547: Fix an error/crash when encountering syntax errors in complex if statements. by Collin Winter · 18 years ago
- 47c52a8 Inline PyImport_GetModulesReloading(). by Collin Winter · 18 years ago
- 5240d74 Patch #1444529: the builtin compile() now accepts keyword arguments. (backport) by Georg Brandl · 18 years ago
- 3bb1567 Typo and grammar fixes. by Georg Brandl · 18 years ago
- 75c7c80 Fix some style nits: by Neal Norwitz · 18 years ago
- 276887b Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. Fixed by patch #922167. by Collin Winter · 18 years ago
- 7b9c555 Bug #1678647: write a newline after printing an exception in any by Georg Brandl · 18 years ago
- 871f1bc Backport from Py3k branch: by Georg Brandl · 18 years ago
- 7478096 Typos. by Georg Brandl · 18 years ago
- aa2321b Patch #703779: unset __file__ in __main__ after running a file. This by Georg Brandl · 18 years ago
- 49aafc9 Variant of patch #697613: don't exit the interpreter on a SystemExit by Georg Brandl · 18 years ago
- 098cd69 Bug #1674503: close the file opened by execfile() in an error condition. by Georg Brandl · 18 years ago
- 0fca97a Patch #1674228: when assigning a slice (old-style), check for the by Georg Brandl · 18 years ago
- 20e1199 Fix embarrassing typo and fix constantification of None by Raymond Hettinger · 18 years ago
- 819de6c tabify by Jeremy Hylton · 18 years ago
- 37075c5 Fix long-standing bug in name mangling for package imports by Jeremy Hylton · 18 years ago
- f83b751 SF #1669182, 2.5 was already fixed. Just assert in 2.6 since string exceptions by Neal Norwitz · 18 years ago
- 88516a6 When printing an unraisable error, don't print exceptions. before the name. by Neal Norwitz · 18 years ago
- 7b7d1c8 Fix a couple of problems in generating the AST code: by Neal Norwitz · 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
- 0db62aa Modify Parser/asdl_c.py so that the __version__ number for Python/Python-ast.c by Brett Cannon · 18 years ago
- d080d4b Check in changed Python-ast.c from a cosmetic change to Python.asdl (in r53731). by Brett Cannon · 18 years ago
- 129bd52 No more raising of string exceptions! by Brett Cannon · 18 years ago
- 6c5c502 Make PyTraceBack_Here use the current thread, not the by Martin v. Löwis · 18 years ago
- afea529 SF patch #1630975: Fix crash when replacing sys.stdout in sitecustomize by Thomas Wouters · 18 years ago
- 83955ef update to (c) years to include 2007 by Anthony Baxter · 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
- 72cd02c Prevent crash on shutdown which can occur if we are finalizing by Neal Norwitz · 18 years ago
- 7037085 Forgot a case where the locals can now be a general mapping by Armin Rigo · 18 years ago
- 85dbec6 Bug #1588287: fix invalid assertion for `1,2` in debug builds. by Neal Norwitz · 18 years ago
- f733a01 Update comments, remove commented out code. by Neal Norwitz · 18 years ago
- 2c4fb8d Clean up a leftover from old listcomp generation code. by Georg Brandl · 18 years ago
- 21997af Fix bug #1565514, SystemError not raised on too many nested blocks. by Neal Norwitz · 18 years ago
- 837ce93 Add some asserts. In sysmodule, I think these were to try to silence by Neal Norwitz · 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
- b5bc537 Patch #1549049: Rewrite type conversion in structmember. by Martin v. Löwis · 18 years ago
- cbeb687 Update the peephole optimizer to remove more dead code (jumps after returns) by Neal Norwitz · 18 years ago
- 8134d06 Bug #1283491: follow docstring convention wrt. keyword-able args in sum(). by Georg Brandl · 18 years ago
- 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 18 years ago
- 82271f1 Fix for SF bug 1569998: break permitted inside try. by Jeremy Hylton · 18 years ago
- 5a9aa4f Fix minor typo in a comment. by Brett Cannon · 18 years ago
- 94b69f6 Very minor grammatical fix in a comment. by Brett Cannon · 18 years ago
- d3f9190 Remove extra semi-colons reported by Johnny Lee on python-dev. Backport if anyone cares. by Neal Norwitz · 18 years ago
- 3a23017 Bug #1557232: fix seg fault with def f((((x)))) and def f(((x),)). by Neal Norwitz · 18 years ago
- d14bf61 Fix typo. by Walter Dörwald · 18 years ago
- ec6c2df Forward-port of rev. 51857: by Georg Brandl · 18 years ago
- 2a399b0 Properly handle a NULL returned from PyArena_New(). (Also fix some whitespace) by Neal Norwitz · 18 years ago
- ca460d9 with and as are now keywords. There are some generated files I can't recreate. by Neal Norwitz · 18 years ago
- 98775df Bug #1550983: emit better error messages for erroneous relative by Georg Brandl · 18 years ago
- d042132 M-x untabify by Neal Norwitz · 18 years ago
- e4d4f00 Add a comment about some refactoring. (There's probably more that should be done.) I will reformat this file in the next checkin due to the inconsistent tabs/spaces. by Neal Norwitz · 18 years ago
- dac090d Bug #1520864 (again): unpacking singleton tuples in list comprehensions and by Neal Norwitz · 18 years ago
- 477ca1c Fix SF #1552093, eval docstring typo (3 ps in mapping) by Neal Norwitz · 18 years ago
- 0c6ae5b Handle a few more error conditions. by Neal Norwitz · 18 years ago
- 4f096d9 Patch #1542451: disallow continue anywhere under a finally by Neal Norwitz · 18 years ago
- 87557cd Add assert to make Klocwork happy (#276) by Neal Norwitz · 18 years ago
- 644dddc Move peephole optimizer to separate file. by Jeremy Hylton · 18 years ago
- 7605936 Handle PyString_FromInternedString() failing (unlikely, but possible). by Neal Norwitz · 18 years ago
- 3cb31ac cpathname could be NULL if it was longer than MAXPATHLEN. Don't try by Neal Norwitz · 18 years ago
- df6a649 Move/copy assert for tstate != NULL before first use. by Neal Norwitz · 18 years ago