summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
Commit message (Expand)AuthorAgeFilesLines
* Plug a memory leak in com_import_stmt(): the tuple created to hold theGuido van Rossum2000-11-271-1/+2
* SF bug 119622: compile errors due to redundant atof decls. I don't understandTim Peters2000-11-141-1/+0
* Rationalize use of limits.h, moving the inclusion to Python.h.Fred Drake2000-09-261-6/+0
* com_continue_stmt(): Improve error message when continue is foundFred Drake2000-09-081-1/+22
* changed \x to consume exactly two hex digits. implements PEP-223Fredrik Lundh2000-09-021-16/+28
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* Replace the run-time 'future-bytecode-stream-inspection' hack to find outThomas Wouters2000-08-271-2/+16
* Re-allow 'import mod.submod as s', and change its meaning to what it shouldThomas Wouters2000-08-271-2/+5
* Oops, one pop too many.Thomas Wouters2000-08-271-1/+0
* Fix allowable node-types for assignment, need to add 'listmaker'.Thomas Wouters2000-08-251-1/+1
* Support for three-token characters (**=, >>=, <<=) which was written byThomas Wouters2000-08-241-33/+188
* Charles G. Waldman <cgw@fnal.gov>:Fred Drake2000-08-241-2/+32
* require list comprehensions to start with a for clauseSkip Montanaro2000-08-221-4/+4
* com_print_stmt(): Guido rightly points out that the stream expressionBarry Warsaw2000-08-211-5/+22
* PEP 214, Extended print Statement, has been accepted by the BDFL.Barry Warsaw2000-08-211-8/+36
* Disallow "import mod.submod as m", because the result is ambiguous. Does itThomas Wouters2000-08-191-1/+2
* com_error(): Quiet gcc -Wall warning.Barry Warsaw2000-08-181-1/+0
* Apply SF patch #101135, adding 'import module as m' and 'from module importThomas Wouters2000-08-171-6/+38
* Fix new compiler warnings. Unused var in compile.c. Argsize mismatchesTim Peters2000-08-151-1/+0
* Remove the osdefs.h #include; it was not needed in the final version ofFred Drake2000-08-151-1/+0
* When raising a SyntaxError, make a best-effort attempt to set theFred Drake2000-08-151-9/+29
* The list comp patch checked for the second child node of the 'listmaker'Thomas Wouters2000-08-131-1/+1
* The list comprehensions patch partly reversed the removal of UNPACK_LIST,Thomas Wouters2000-08-121-13/+0
* list comprehensions. seeSkip Montanaro2000-08-121-14/+129
* Merge UNPACK_LIST and UNPACK_TUPLE into a single UNPACK_SEQUENCE, since theyThomas Wouters2000-08-111-18/+5
* When returning an error from jcompile() (which is passed through byGuido van Rossum2000-08-071-0/+8
* Fix some strange indentation and grammar that have been bugging me forThomas Wouters2000-08-051-6/+5
* Mass ANSIfication of function definitions. Doesn't cover all 'extern'Thomas Wouters2000-07-221-324/+104
* just fixing the indentationPeter Schneider-Kamp2000-07-131-1/+1
* raise error on duplicate function argumentsPeter Schneider-Kamp2000-07-131-1/+10
* Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.Tim Peters2000-07-091-29/+29
* Include limits.h if we have it.Jack Jansen2000-07-031-0/+3
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Trent Mick <trentm@activestate.com>:Fred Drake2000-06-301-2/+2
* Trent Mick's Win64 changes: size_t vs. int or long; also some overflowGuido van Rossum2000-06-281-8/+12
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-1/+1
* Marc-Andre Lemburg:Guido van Rossum2000-05-011-1/+1
* Charles G Waldman:Guido van Rossum2000-04-281-36/+49
* M.-A. Lemburg <mal@lemburg.com>:Fred Drake2000-04-131-2/+23
* Patch by Vladimir Marangozov to include the function name whenGuido van Rossum2000-04-101-2/+6
* Vladimir Marangozov: This fixes the line number in the stringGuido van Rossum2000-04-071-4/+2
* remove reference (vestigal) to CALL_FUNCTION_STARJeremy Hylton2000-03-291-1/+1
* slightly modified version of Greg Ewing's extended call syntax patchJeremy Hylton2000-03-281-2/+23
* Marc-Andre Lemburg: support for Unicode string literals (u"...", ur"...").Guido van Rossum2000-03-101-3/+22
* The cleanup code in com-init() at label fail_0000 should removeGuido van Rossum1999-12-201-1/+1
* Tim Peters writes:Guido van Rossum1999-09-151-1/+1
* Implement -OO; "unsafe" optimization that removes docstrings.Guido van Rossum1999-01-281-0/+3
* Remove prototypes for PyOS_strto[u]l -- Chris Herborth.Guido van Rossum1998-12-101-3/+0
* Add more SET_LINENO instructions in long argument listsGuido van Rossum1998-12-101-1/+7