summaryrefslogtreecommitdiff
path: root/Include/compile.h
Commit message (Expand)AuthorAgeFilesLines
* String annotations [PEP 563] (#4390)Guido van Rossum2018-01-261-1/+2
* bpo-32372: Move __debug__ optimization to the AST level. (#4925)Serhiy Storchaka2017-12-251-1/+1
* bpo-29469: Move constant folding to AST optimizer (GH-2858)INADA Naoki2017-12-141-0/+2
* bpo-22257: Small changes for PEP 432. (#1728)Eric Snow2017-05-221-0/+17
* PEP 479: Change StopIteration handling inside generators.Yury Selivanov2015-05-091-0/+1
* Issue #19722: Added opcode.stack_effect(), which accuratelyLarry Hastings2013-11-231-0/+3
* Close #11619: The parser and the import machinery do not encode UnicodeVictor Stinner2013-08-261-1/+14
* Move code related to compile from Python.h to compile.hVictor Stinner2011-09-291-2/+12
* Issue #9738: Ooops, fix typos in my previous commit (r87506)Victor Stinner2010-12-271-1/+1
* Issue #9738: Document encodings of AST, compiler, parser and PyRun functionsVictor Stinner2010-12-271-2/+6
* Add an "optimize" parameter to compile() to control the optimization level, a...Georg Brandl2010-12-041-2/+3
* Merge branches/pep-0384.Martin v. Löwis2010-12-031-1/+2
* The BDFL has retired! Long live the FLUFL (Friendly Language Uncle For Life)!Brett Cannon2009-04-011-0/+1
* Merged revisions 67028,67040,67044,67046,67052,67065,67070,67077,67082 via sv...Benjamin Peterson2008-11-031-2/+0
* Merged revisions 61952-61953 via svnmerge fromChristian Heimes2008-03-261-0/+1
* Add __future__ import for print_function. It's a no-op in 3.0, but it needs ...Eric Smith2008-03-201-0/+1
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-1/+1
* Move #include to outside "extern C {}", before Tim figures out it'll breakThomas Wouters2006-02-281-2/+3
* Include code.h more sanely.Thomas Wouters2006-02-281-3/+2
* from __future__ import with_statement addon for 'with', mostly written byThomas Wouters2006-02-281-0/+1
* SF patch #1438387, PEP 328: relative and absolute imports.Thomas Wouters2006-02-281-0/+1
* Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines,Neal Norwitz2005-12-171-1/+1
* use PyAPI_FUNC instead of DL_IMPORT. are we going to deprecate the old non-P...Neal Norwitz2005-10-231-2/+2
* Fix a bunch of imports to use code.h instead of compile.h.Jeremy Hylton2005-10-211-5/+0
* Merge ast-branch to headJeremy Hylton2005-10-201-58/+13
* This is my patch #876198 plus a NEWS entry and a header frob.Michael W. Hudson2004-02-121-5/+0
* Small function call optimization and special build option for call stats.Jeremy Hylton2003-02-051-0/+6
* Constify filenames and scripts. Fixes #651362.Martin v. Löwis2002-12-111-3/+3
* Excise DL_EXPORT from Include.Mark Hammond2002-08-121-6/+6
* Removed more hair in support of future-generator stmts.Tim Peters2002-04-121-1/+1
* Add helper macro to get the number of free variables for a PyCodeObject.Jeremy Hylton2001-12-131-0/+1
* Refactor future feature handlingJeremy Hylton2001-08-101-9/+1
* Implement PEP 238 in its (almost) full glory.Guido van Rossum2001-08-081-0/+6
* Part way to allowing "from __future__ import generators" to communicateTim Peters2001-07-161-0/+8
* Preliminary support for "from __future__ import generators" to enableGuido van Rossum2001-07-151-0/+3
* Enable nested scopes by default.Guido van Rossum2001-07-121-1/+1
* Merging the gen-branch into the main line, at Guido's direction. Yay!Tim Peters2001-06-181-0/+1
* If a code object is compiled with nested scopes, define the CO_NESTED flag.Jeremy Hylton2001-03-221-0/+1
* Useful future statement support for the interactive interpreterJeremy Hylton2001-03-011-0/+2
* Presumed correct compiler pass for future statementsJeremy Hylton2001-02-281-1/+1
* Improved __future__ parser; still more to doJeremy Hylton2001-02-271-3/+13
* Preliminary support for future nested scopesJeremy Hylton2001-02-271-0/+3
* PEP 227 implementationJeremy Hylton2001-01-251-1/+4
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* ANSI-fication and Py_PROTO extermination.Fred Drake2000-07-091-24/+24
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-21/+6
* Add DL_IMPORT(returntype) for all officially exported functions.Guido van Rossum1998-12-041-3/+3
* Changes to support other object types besides stringsGuido van Rossum1998-10-071-1/+6
* Add co_firstlineno and co_lnotab, for the line number table generatedGuido van Rossum1997-01-241-1/+4