summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Modify Parser/asdl_c.py so that the __version__ number for Python/Python-ast.cBrett Cannon2007-02-121-1/+10
* Check in changed Python-ast.c from a cosmetic change to Python.asdl (inBrett Cannon2007-02-111-1/+1
* No more raising of string exceptions!Brett Cannon2007-01-301-13/+34
* Make PyTraceBack_Here use the current thread, not theMartin v. Löwis2007-01-231-1/+1
* SF patch #1630975: Fix crash when replacing sys.stdout in sitecustomizeThomas Wouters2007-01-232-6/+9
* update to (c) years to include 2007Anthony Baxter2007-01-061-1/+1
* SF# 1409443: Expand comment to cover the interaction between f->f_lasti and ...Raymond Hettinger2007-01-061-1/+10
* Prevent crash on shutdown which can occur if we are finalizingNeal Norwitz2007-01-051-1/+2
* Forgot a case where the locals can now be a general mappingArmin Rigo2006-11-291-1/+3
* Bug #1588287: fix invalid assertion for `1,2` in debug builds.Neal Norwitz2006-11-041-0/+1
* Update comments, remove commented out code.Neal Norwitz2006-10-291-87/+31
* Clean up a leftover from old listcomp generation code.Georg Brandl2006-10-291-7/+1
* Fix bug #1565514, SystemError not raised on too many nested blocks.Neal Norwitz2006-10-281-1/+4
* Add some asserts. In sysmodule, I think these were to try to silenceNeal Norwitz2006-10-281-0/+4
* [Bug #1542016] Report PCALL_POP value. This makes the return value of sys.ca...Andrew M. Kuchling2006-10-271-2/+2
* Patch #1549049: Rewrite type conversion in structmember.Martin v. Löwis2006-10-271-53/+91
* Update the peephole optimizer to remove more dead code (jumps after returns)Neal Norwitz2006-10-142-5/+17
* Bug #1283491: follow docstring convention wrt. keyword-able args in sum().Georg Brandl2006-10-121-2/+3
* Forward-port of r52136,52138: a review of overflow-detecting code.Armin Rigo2006-10-046-27/+37
* Fix for SF bug 1569998: break permitted inside try.Jeremy Hylton2006-10-041-1/+13
* Fix minor typo in a comment.Brett Cannon2006-10-031-1/+1
* Very minor grammatical fix in a comment.Brett Cannon2006-09-281-1/+1
* Remove extra semi-colons reported by Johnny Lee on python-dev. Backport if a...Neal Norwitz2006-09-231-1/+1
* Bug #1557232: fix seg fault with def f((((x)))) and def f(((x),)).Neal Norwitz2006-09-221-2/+24
* Fix typo.Walter Dörwald2006-09-211-1/+1
* Forward-port of rev. 51857:Georg Brandl2006-09-111-1/+6
* Properly handle a NULL returned from PyArena_New().Neal Norwitz2006-09-111-2/+4
* with and as are now keywords. There are some generated files I can't recreate.Neal Norwitz2006-09-063-22/+14
* Bug #1550983: emit better error messages for erroneous relativeGeorg Brandl2006-09-061-2/+3
* M-x untabifyNeal Norwitz2006-09-051-821/+821
* Add a comment about some refactoring. (There's probably more that should be ...Neal Norwitz2006-09-051-6/+5
* Bug #1520864 (again): unpacking singleton tuples in list comprehensions andNeal Norwitz2006-09-052-5/+14
* Fix SF #1552093, eval docstring typo (3 ps in mapping)Neal Norwitz2006-09-051-1/+1
* Handle a few more error conditions.Neal Norwitz2006-08-211-0/+5
* Patch #1542451: disallow continue anywhere under a finallyNeal Norwitz2006-08-211-4/+9
* Add assert to make Klocwork happy (#276)Neal Norwitz2006-08-211-0/+1
* Move peephole optimizer to separate file.Jeremy Hylton2006-08-212-608/+616
* Handle PyString_FromInternedString() failing (unlikely, but possible).Neal Norwitz2006-08-191-9/+8
* cpathname could be NULL if it was longer than MAXPATHLEN. Don't tryNeal Norwitz2006-08-131-1/+6
* Move/copy assert for tstate != NULL before first use.Neal Norwitz2006-08-131-1/+7
* Patch #1538606, Patch to fix __index__() clipping.Neal Norwitz2006-08-121-9/+9
* PyModule_GetDict() can fail, produce fatal errors if this happens on startup.Neal Norwitz2006-08-121-0/+4
* Whoops, how did that get in there. :-) Revert all the parts of 51227 that we...Neal Norwitz2006-08-122-12/+0
* Check returned pointer is valid.Neal Norwitz2006-08-122-0/+12
* This code is actually not used unless WITHOUT_COMPLEX is defined.Neal Norwitz2006-08-121-0/+8
* It's highly unlikely, though possible for PyEval_Get*() to return NULLs.Neal Norwitz2006-08-121-2/+2
* Even though _Py_Mangle() isn't truly public anyone can call it andNeal Norwitz2006-08-121-2/+2
* Klocwork made another run and found a bunch more problems.Neal Norwitz2006-08-122-1/+8
* Followup to bug #1069160.Tim Peters2006-08-101-12/+27
* Concatenation on a long string breaks (SF #1526585).Armin Rigo2006-08-091-3/+9