summaryrefslogtreecommitdiffstats
path: root/Parser
Commit message (Expand)AuthorAgeFilesLines
* Make path calculation platform independentJeremy Hylton2006-04-041-1/+1
* Add lineno, col_offset to excephandler to enable future fix forJeremy Hylton2006-04-042-3/+6
* * Fix a refleak of *_attributes.Neal Norwitz2006-04-031-5/+7
* Years in the making.Tim Peters2006-03-261-39/+44
* Use macro versions instead of function versions when we already know the type.Neal Norwitz2006-03-201-1/+3
* SF #1444030: Fix several potential defects found by Coverity.Hye-Shik Chang2006-03-071-0/+2
* Fix crashing bug in tokenizer, when tokenizing files with non-ASCII bytesThomas Wouters2006-03-021-0/+5
* Fix memory leak on attributes.Martin v. Löwis2006-03-021-1/+3
* Patch #1440601: Add col_offset attribute to AST nodes.Martin v. Löwis2006-03-018-13/+29
* Remove unused field.Martin v. Löwis2006-03-011-1/+0
* Don't pollute namespace as bad as before. All the types are static now.Neal Norwitz2006-02-281-7/+7
* Make 'as' an actual keyword when with's future statement is used. NotThomas Wouters2006-02-282-12/+14
* Change non-ASCII warning into a SyntaxError.Martin v. Löwis2006-02-281-10/+6
* from __future__ import with_statement addon for 'with', mostly written byThomas Wouters2006-02-283-31/+65
* Whitespace normalization.Tim Peters2006-02-282-16/+16
* SF patch #1438387, PEP 328: relative and absolute imports.Thomas Wouters2006-02-281-1/+1
* Generate return statement.Martin v. Löwis2006-02-281-0/+1
* Add generation of the version.Martin v. Löwis2006-02-281-1/+2
* Add support for version field on ModulesMartin v. Löwis2006-02-283-8/+29
* PEP 343 -- the with-statement.Guido van Rossum2006-02-271-0/+1
* Create _ast module.Martin v. Löwis2006-02-271-191/+86
* PEP 308 implementation, including minor refdocs and some testcases. ItThomas Wouters2006-02-271-0/+1
* Avoid reinitializing the types twice.Martin v. Löwis2006-02-271-0/+1
* Stop generating empty arrays.Martin v. Löwis2006-02-261-12/+22
* Fix iterating over cmpop_ty lists.Martin v. Löwis2006-02-261-5/+13
* Generate code to recursively copy an AST intoMartin v. Löwis2006-02-261-59/+206
* Use Py_ssize_t to count the length.Martin v. Löwis2006-02-161-1/+1
* Remove C99ism.Martin v. Löwis2006-02-151-1/+2
* Merge ssize_t branch.Martin v. Löwis2006-02-152-11/+12
* Improved handling of syntax errors.Jeremy Hylton2006-01-271-0/+1
* Revert previous checkin, the check is for <, not ==. i is unsed in non-debug...Neal Norwitz2006-01-081-2/+5
* Fix icc warnings. This couldn't have been correct since i is checkedNeal Norwitz2006-01-081-5/+2
* Whitespace normalization.Tim Peters2005-12-253-814/+814
* Fix SF bug #1072182, problems with signed characters.Neal Norwitz2005-12-192-2/+3
* Fix Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter.Neal Norwitz2005-12-181-0/+6
* Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines,Neal Norwitz2005-12-171-5/+10
* When regenerating files like Python-ast.h, take care that the generatedArmin Rigo2005-12-141-3/+2
* SF #1373150, diffs in working copy after a buildNeal Norwitz2005-12-111-1/+5
* Fix some more memory leaks.Neal Norwitz2005-11-161-6/+11
* Prevent unlikely memory leak, tok should always be freed when parsetok() returnsNeal Norwitz2005-11-151-0/+1
* Thou shalt not lie, there are really 5 types nowNeal Norwitz2005-11-151-1/+1
* Whoops, checkin consistent versions of *all* files to stop pollutingNeal Norwitz2005-11-131-6/+80
* Prevent name pollution by making lots of internal functions static.Neal Norwitz2005-11-131-4/+4
* Remove .cvsignore files, as they live in svn:ignoreMartin v. Löwis2005-10-301-6/+0
* Use PyErr_NoMemory() instead of rolling our own.Neal Norwitz2005-10-231-7/+5
* Free coding spec (cs) if there was an error to prevent mem leak. Maybe backp...Neal Norwitz2005-10-211-0/+3
* Merge ast-branch to headJeremy Hylton2005-10-207-4/+1967
* - Fix segfault with invalid coding.Neal Norwitz2005-10-023-2/+12
* Apply SF patch #1101726: Fix buffer overrun in tokenizer.c when a source fileWalter Dörwald2005-07-121-27/+45
* In a threads-disabled build, typing Ctrl-C into a raw_input() crashed,Michael W. Hudson2005-04-071-0/+4