summaryrefslogtreecommitdiff
path: root/Parser
Commit message (Expand)AuthorAgeFilesLines
* SF bug 751956: graminit.[ch] don't build on windowsTim Peters2003-06-171-1/+4
* Patch #734231: Update RiscOS support. In particular, correctMartin v. Löwis2003-05-101-0/+4
* Patch #708495: Port more stuff to OpenVMS.Martin v. Löwis2003-05-031-0/+8
* Remove file that was moved to ../IncludeGuido van Rossum2003-04-291-18/+0
* Changes from Jonathan Riehl to allow his pgen extension (PEP 269) toGuido van Rossum2003-04-173-5/+34
* compile_atom(): Neal's last checkin removing the setting of i brokeBarry Warsaw2003-02-281-0/+3
* Remove setting i since it isn't used. Found in unrelated bug 690012.Neal Norwitz2003-02-281-3/+0
* Add URL for PEP to the source code encoding warning.Marc-André Lemburg2003-02-171-6/+12
* - Finally fixed the bug in compile() and exec where a string endingGuido van Rossum2003-02-131-0/+9
* patch 680474 that fixes bug 679880: compile/eval/exec refused utf-8 bomJust van Rossum2003-02-091-2/+2
* Fix [ 665014 ] files with long lines and an encoding crash.Mark Hammond2003-01-141-1/+2
* Constify filenames and scripts. Fixes #651362.Martin v. Löwis2002-12-113-12/+14
* Fix compiler warning on HP-UX.Neal Norwitz2002-11-021-2/+2
* Change PyOS_Readline declaration to match the recent change to myreadline.cSkip Montanaro2002-10-271-2/+2
* Patch #512981: Update readline input stream on sys.stdin/out change.Martin v. Löwis2002-10-262-10/+22
* Removed reliance on gcc/C99 extension.Tim Peters2002-09-031-1/+3
* Ignore encoding declarations inside strings. Fixes #603509.Martin v. Löwis2002-09-032-1/+17
* Squash a few calls to the hideously expensive PyObject_CallObject(o,a)Guido van Rossum2002-08-161-3/+14
* provide less mysterious error messages when seeing end-of-line inSkip Montanaro2002-08-151-3/+6
* Use Py_FatalError instead of abort.Martin v. Löwis2002-08-071-2/+3
* Fix PEP 263 code --without-unicode. Fixes #591943.Martin v. Löwis2002-08-071-0/+18
* Added a cast to shut up a compiler warning.Jack Jansen2002-08-051-1/+1
* Add 1 to lineno in deprecation warning. Fixes #590888.Martin v. Löwis2002-08-051-1/+3
* Make pgen compile with pydebug. Duplicate normalized names, as it mayMartin v. Löwis2002-08-042-2/+8
* Group statements properly.Martin v. Löwis2002-08-041-6/+12
* Repaired a fatal compiler error in the debug build: it's not clear whatTim Peters2002-08-041-1/+1
* Squash compiler wng about signed-vs-unsigned mismatch.Tim Peters2002-08-041-1/+1
* Patch #534304: Implement phase 1 of PEP 263.Martin v. Löwis2002-08-044-10/+463
* SF patch #578297:Andrew MacIntyre2002-08-043-12/+13
* XXXROUNDUP(): Turns out this fixed Andrew MacIntyre's memory-mgmtTim Peters2002-07-151-10/+33
* Fix bug 439992 - [win32] KeyboardInterrupt Not Caught.Mark Hammond2002-07-141-0/+33
* I trust the parser accelators are getting added :-).Jeremy Hylton2002-07-111-6/+0
* Fix SF Bug 564931: compile() traceback must include filename.Thomas Heller2002-07-091-2/+11
* The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: addedTim Peters2002-07-091-1/+1
* PyNode_AddChild() and fancy_roundup(): Be paranoid about int overflow.Tim Peters2002-07-081-2/+7
* PyNode_AddChild(): Do aggressive over-allocation when the number ofTim Peters2002-07-081-8/+41
* Add definition of Py_IgnoreEnvironmentFlag (needed at least in debugGuido van Rossum2002-05-311-0/+1
* Py_IgnoreEnvironmentFlag should be extern, since it is declared in pythonrun.cNeal Norwitz2002-05-311-1/+1
* Link with the right C library! This has always been wrong (& my fault).Tim Peters2002-05-231-1/+1
* Py_GETENV is used by obmalloc and needs Py_IgnoreEnvironmentFlag. Provide it.Neil Schemenauer2002-04-221-0/+1
* Update the Windows makefile for 2.3.Tim Peters2002-04-221-3/+3
* Mass checkin of universal newline support.Jack Jansen2002-04-142-4/+16
* Disable the parser hacks that enabled the "yield" keyword using a futureNeil Schemenauer2002-03-222-0/+8
* Disable the parser hacks that allowed the "yield" keyword to be enabledNeil Schemenauer2002-03-221-0/+10
* Include <unistd.h> in Python.h. Fixes #500924.Martin v. Löwis2002-01-121-3/+0
* Initialize err_ret with filename if available. Fixes #498828.Martin v. Löwis2002-01-051-5/+5
* PyGrammar_LabelRepr(): sprintf -> PyOS_snprintf.Tim Peters2001-12-041-2/+2
* The parser doesn't need its own implementation of assert, and having itsTim Peters2001-12-045-23/+4
* Reverting last change so we don't have to think about the assert macroBarry Warsaw2001-11-281-5/+4
* PyGrammar_LabelRepr(): Conversion of sprintf() to PyOS_snprintf() forBarry Warsaw2001-11-281-4/+5