summaryrefslogtreecommitdiffstats
path: root/Parser
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 64114 via svnmerge fromAmaury Forgeot d'Arc2008-06-181-0/+3
* Merged revisions 64212 via svnmerge fromBenjamin Peterson2008-06-131-0/+2
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-8/+12
* Remove meaning of -ttt, but still accept -t option on cmdline for compatibility.Georg Brandl2008-06-041-8/+0
* Revert r63934 -- it was mixing two patches.Georg Brandl2008-06-041-0/+8
* Remove meaning of -ttt, but still accept -t option on cmdline for compatibility.Georg Brandl2008-06-041-8/+0
* Remove __metaclass__ remains.Georg Brandl2008-05-271-2/+0
* Renamed files bytesobject.[ch] and stringobject.[ch]Christian Heimes2008-05-261-1/+1
* Renamed PyString to PyBytesChristian Heimes2008-05-262-6/+6
* Renamed PyBytes to PyByteArrayChristian Heimes2008-05-261-4/+4
* Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,...Christian Heimes2008-05-041-1/+1
* Merged revisions 61440-61441,61443,61445-61448,61451-61452,61455-61457,61459-...Neal Norwitz2008-04-151-0/+3
* Merged revisions 61440-61441,61443,61445-61448,61451-61452,61455-61457,61459-...Neal Norwitz2008-03-311-10/+30
* Merged revisions 62047 via svnmerge fromNeal Norwitz2008-03-311-5/+2
* Merged revisions 62049,62054 via svnmerge fromNeal Norwitz2008-03-311-8/+102
* Merged revisions 62039-62042 via svnmerge fromNeal Norwitz2008-03-311-6/+13
* Merged revisions 62013-62014 via svnmerge fromMartin v. Löwis2008-03-301-1/+1
* Merged revisions 62004 via svnmerge fromMartin v. Löwis2008-03-301-2/+253
* Merged revisions 61981,61984-61987,61992-61993,61997-62000 via svnmerge fromChristian Heimes2008-03-281-8/+0
* Merged revisions 61954,61956-61957 via svnmerge fromChristian Heimes2008-03-261-0/+1
* Merged revisions 61952-61953 via svnmerge fromChristian Heimes2008-03-262-10/+40
* Bug #2301: Don't try decoding the source code into the originalMartin v. Löwis2008-03-172-74/+5
* Add missing parameter spotted by Jared FlatowNeal Norwitz2008-03-171-1/+1
* Merged revisions 60990-61002 via svnmerge fromChristian Heimes2008-02-232-2/+1
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-231-1/+1
* Merged revisions 60350-60363 via svnmerge fromChristian Heimes2008-01-271-0/+1
* Merged revisions 60176-60209 via svnmerge fromChristian Heimes2008-01-231-1/+1
* Merged revisions 60151-60159,60161-60168,60170,60172-60173,60175 via svnmerge...Georg Brandl2008-01-211-2/+13
* Merged revisions 60080-60089,60091-60093 via svnmerge fromGeorg Brandl2008-01-191-0/+19
* Merged revisions 59985-60000,60002,60005-60007,60009-60042 via svnmerge fromChristian Heimes2008-01-181-0/+1
* Remove traces of Py_USING_UNICODE and Unicode-specific conditionals in config...Georg Brandl2008-01-071-3/+0
* More PyImport_ImportModule -> PyImport_ImportModuleNoBlockChristian Heimes2008-01-031-1/+1
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-1/+1
* Fixed a problem found by Bill Janssen on Mac OS XChristian Heimes2007-12-021-1/+1
* Open output files in text mode, after all they are text files.Guido van Rossum2007-11-231-2/+2
* Problem found while converting from PyBytes to PyString:Amaury Forgeot d'Arc2007-11-221-7/+17
* Cleanup of tokenizer.c.Guido van Rossum2007-11-161-61/+47
* Correction for issue1134: all source files with a coding spec, except latin-1Amaury Forgeot d'Arc2007-11-151-14/+29
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-12/+11
* Fixes for issue 1752184, ensuring type objects are always createdGuido van Rossum2007-11-021-1/+1
* Merged revisions 58221-58741 via svnmerge fromGuido van Rossum2007-11-011-1/+2
* Issue 1267, continued.Guido van Rossum2007-10-222-17/+21
* Make sure the malloc'ed string has space for the null byte.Brett Cannon2007-10-211-1/+1
* Fix PyTokenizer_FindEncoding() for OS X 10.4. Turns out that seeking to theBrett Cannon2007-10-201-4/+11
* Plug a memory leak where a struct tok_state was not being freed.Brett Cannon2007-10-201-3/+11
* Patch 1267 by Christian Heimes.Guido van Rossum2007-10-192-1/+23
* Fix another stray PyString reference that should be PyBytes; and its comment.Guido van Rossum2007-10-101-2/+2
* Fix an issue in PyTokenizer_RestoreEncoding() which was treating a PyBytesGuido van Rossum2007-10-101-5/+10
* Use an enum for decoding_state. It makes the code a little moreNeil Schemenauer2007-09-212-12/+18
* Merged revisions 57778-58052 via svnmerge fromThomas Wouters2007-09-083-5/+77