aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/symtable.py
Commit message (Expand)AuthorAge
* gh-119698: deprecate ``symtable.Class.get_methods`` (#121902)Bénédikt Tran2024-07-22
* gh-119698: fix a special case in `symtable.Class.get_methods` (#121802)Bénédikt Tran2024-07-17
* gh-119698: symtable: Fix merge race (#120779)Jelle Zijlstra2024-06-20
* gh-119698: fix `symtable.Class.get_methods` and document its behaviour correc...Bénédikt Tran2024-06-19
* gh-119933: Improve ``SyntaxError`` message for invalid type parameters expres...Bénédikt Tran2024-06-17
* gh-120417: Add #noqa to used imports in the stdlib (#120421)Victor Stinner2024-06-13
* gh-120029: make `symtable.Symbol.__repr__` correctly reflect the compiler's f...Bénédikt Tran2024-06-12
* gh-119180: PEP 649 compiler changes (#119361)Jelle Zijlstra2024-06-11
* gh-120029: export `DEF_TYPE_PARAM` compiler flag (#120028)Bénédikt Tran2024-06-04
* gh-85098: Implement functional CLI of symtable (#109112)Serhiy Storchaka2023-11-07
* gh-110045: Update symtable module for PEP 695 (#110066)Jelle Zijlstra2023-09-29
* Change list to view object (#93661)Pamela Fox2022-06-11
* bpo-42355: symtable.get_namespace() now checks whether there are multiple or ...Batuhan Taskaya2021-07-18
* Fix typos in multiple files (GH-26689)Binbin2021-06-12
* bpo-41840: Report module-level globals as both local and global in the symtab...Pablo Galindo2020-10-03
* bpo-41224: Document is_annotated() in symtable module and update doc strings ...Joannah Nanjekye2020-07-07
* bpo-40208: Remove deprecated has_exec method of SymbolTable (GH-19396)Batuhan Taşkaya2020-04-14
* bpo-40196: Fix a bug in the symtable when reporting inspecting global variabl...Pablo Galindo2020-04-06
* bpo-34983: Expose symtable.Symbol.is_nonlocal() in the symtable module (GH-9872)Pablo Galindo2018-10-20
* bpo-30296 Remove unnecessary tuples, lists, sets, and dicts (#1489)Jon Dufresne2017-05-18
* Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.Yury Selivanov2016-09-08
* remove the concept of an unoptimized function scope from the compiler, since ...Benjamin Peterson2015-04-27
* merge 3.3 (#19393)Benjamin Peterson2013-10-26
|\
| * just return toplevel symbol table rather than all blocks (closes #19393)Benjamin Peterson2013-10-26
* | modernize some modules' code by using with statement around open()Giampaolo Rodola'2013-02-12
|/
* simplify this expressionBenjamin Peterson2009-06-28
* Merged revisions 73376,73393,73398,73400,73404-73405,73409,73419-73421,73432,...Benjamin Peterson2009-06-28
* Merged revisions 70801,70809 via svnmerge fromJeremy Hylton2009-03-31
* revert 65897Benjamin Peterson2008-08-20
* Merged revisions 65885,65892,65894,65898 via svnmerge fromBenjamin Peterson2008-08-20
* return sets instead of tuples from some symtable methodsBenjamin Peterson2008-08-20
* kill the obsolete symtable.Symbol methodsBenjamin Peterson2008-08-20
* Merged revisions 65715,65724,65726,65732,65736-65739,65775 via svnmerge fromBenjamin Peterson2008-08-17
* Raise statement normalization in Lib/.Collin Winter2007-08-30
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-11
* Fix most trivially-findable print statements.Guido van Rossum2007-02-09
* This module was still referencing some dead EXEC related constants.Guido van Rossum2006-09-06
* Get symtable to limp along, can run compiler/symbols.py. Not saying much, ne...Neal Norwitz2005-11-25
* Replaced .keys() with dictionary iteratorsRaymond Hettinger2002-06-02
* Convert a pile of obvious "yes/no" functions to return bool.Tim Peters2002-04-04
* Remove now-unnecessary "from __future__ import nested_scopes" stmts.Tim Peters2001-07-12
* Fix three PyChecker-detected gotchas.Jeremy Hylton2001-04-16
* Whitespace normalization.Tim Peters2001-03-29
* flesh out __all__Jeremy Hylton2001-03-23
* First cut at a high-level symbol table interfaceJeremy Hylton2001-03-22