summaryrefslogtreecommitdiff
path: root/Modules/symtablemodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #20186: Converted the symtable module to Argument Clinic.Serhiy Storchaka2017-02-041-11/+22
* Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.Yury Selivanov2016-09-081-0/+1
* remove the concept of an unoptimized function scope from the compiler, since ...Benjamin Peterson2015-04-271-3/+0
* merge 3.3 (#19393)Benjamin Peterson2013-10-261-1/+1
|\
| * just return toplevel symbol table rather than all blocks (closes #19393)Benjamin Peterson2013-10-261-1/+1
* | Close #11619: The parser and the import machinery do not encode UnicodeVictor Stinner2013-08-261-4/+6
* | Issue #17917: Use PyModule_AddIntMacro() instead of PyModule_AddIntConstant()Charles-Francois Natali2013-05-201-16/+16
|/
* initialize more global type objects (closes #16369)Benjamin Peterson2012-10-301-0/+3
* Remove redundant includes of headers that are already included by Python.h.Georg Brandl2010-11-301-1/+0
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-70/+70
* Merged revisions 73376,73393,73398,73400,73404-73405,73409,73419-73421,73432,...Benjamin Peterson2009-06-281-4/+0
* Merged revisions 65715,65724,65726,65732,65736-65739,65775 via svnmerge fromBenjamin Peterson2008-08-171-0/+4
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-3/+20
* Hide list comp variables and support set comprehensionsNick Coghlan2007-04-151-1/+1
* Patch #1550800: make exec a function.Georg Brandl2006-09-061-2/+1
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Merge ast-branch to headJeremy Hylton2005-10-201-3/+5
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-121-1/+2
* Allow more docstrings to be removed during compilation in some modulesNeal Norwitz2002-08-131-1/+2
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-1/+1
* Fix [ #489673 ] memory leak in test_symtable: Free the st_future slot.Jeremy Hylton2001-12-061-0/+1
* Export three optimization (fast locals) flagsJeremy Hylton2001-04-161-0/+4
* add DEF_BOUND constantJeremy Hylton2001-03-221-0/+1
* Relax the rules for using 'from ... import *' and exec in the presenceJeremy Hylton2001-02-091-1/+1
* Add minimal interface to symtable: _symtable module.Jeremy Hylton2001-02-021-0/+72