index
:
cpython
3.10
3.11
3.12
3.13
3.14
3.9
main
The Python programming language
Aslak Raanes
about
summary
refs
log
tree
commit
diff
stats
homepage
log msg
author
committer
range
path:
root
/
Lib
/
compiler
/
pycodegen.py
Commit message (
Expand
)
Author
Age
...
*
Various sundry changes for 2.2 compatibility
Jeremy Hylton
2001-09-14
*
Fix _convert_NAME() so that it doesn't store locals for class bodies.
Jeremy Hylton
2001-08-30
*
spurious pop
Jeremy Hylton
2001-08-30
*
Track the block stack more reasonably in order to handle continue in
Jeremy Hylton
2001-08-29
*
Generate SET_LINENO for list and tuple literals when the open paren
Jeremy Hylton
2001-08-29
*
Support // and //=
Jeremy Hylton
2001-08-29
*
Make sure the JUMP_ABSOLUTE and POP_BLOCK at the end of a for loop are
Jeremy Hylton
2001-08-28
*
Generate FOR_ITER-based loops instead of old FOR_LOOP-based loops
Jeremy Hylton
2001-08-28
*
Handle private names
Jeremy Hylton
2001-08-27
*
emit SET_LINENO for augmented assignments
Jeremy Hylton
2001-08-27
*
Many changes -- bug fixes and sundry improvements
Jeremy Hylton
2001-08-27
*
Pop loop off the loop stack before handling the loop's else clause.
Jeremy Hylton
2001-04-12
*
Use new _implicitNameOp() to generate name op code for list comprehensions.
Jeremy Hylton
2001-04-12
*
Add support for visitAssAttr to findOp().
Jeremy Hylton
2001-04-12
*
pyassem.py:
Jeremy Hylton
2001-04-12
*
Revise handling of tuple arguments so that the variables names match
Jeremy Hylton
2001-04-12
*
Fix unpackSequence() to use _nameOp() rather than LOAD_FAST
Jeremy Hylton
2001-04-12
*
Inside a class scope always use LOAD_NAME, STORE_NAME, DEL_NAME
Jeremy Hylton
2001-04-12
*
Preliminary support for nested scopes
Jeremy Hylton
2001-04-12
*
typo
Jeremy Hylton
2001-04-11
*
[finishing fix from earlier checkins]
Jeremy Hylton
2001-04-11
*
Generate docstrings.
Jeremy Hylton
2001-04-11
*
Add support for future statements
Jeremy Hylton
2001-04-09
*
Change the graph structure to contain the code generator object for
Jeremy Hylton
2000-11-06
*
Now supports entire Python 2.0 language and still supports Python
Jeremy Hylton
2000-10-13
*
Fix SF bug #116263: support for from .. import *
Jeremy Hylton
2000-10-12
*
patch by Neil Schemenauer to improve (fix?) line number generation
Jeremy Hylton
2000-09-01
*
Update magic number.
Jeremy Hylton
2000-09-01
*
Bring Tools/compiler almost up to date. Specifically:
Thomas Wouters
2000-08-12
*
replace most calls to emit 'SET_LINENO' will call to method set_lineno
Jeremy Hylton
2000-08-04
*
patches from Mark Hammond
Jeremy Hylton
2000-05-02
*
complete rewrite
Jeremy Hylton
2000-03-16
*
rename compile.py to pycodegen.py
Jeremy Hylton
2000-03-06
*
the previous quick hack to fix def foo((x,y)) failed on some cases
Jeremy Hylton
2000-02-17
*
satisfy the tabnanny
Jeremy Hylton
2000-02-17
*
support for arglists with implicit tuple unpacks
Jeremy Hylton
2000-02-16
*
finish first impl of code generator
Jeremy Hylton
2000-02-15
*
edit a doc string
Jeremy Hylton
2000-02-14
*
get rid of spurious print
Jeremy Hylton
2000-02-14
*
looks like everything is working except for try/except (pystone
Jeremy Hylton
2000-02-14
*
split compile.py into two files
Jeremy Hylton
2000-02-14
*
change MODULE_NAMESPACE/FUNCTION_NAMESPACE stuff to have a single flag
Jeremy Hylton
2000-02-12
*
add support for Lambda nodes
Jeremy Hylton
2000-02-11
*
add loop handling via
Jeremy Hylton
2000-02-10
*
add namespace attr to CodeGenerator, can be either MODULE_NAMESPACE or
Jeremy Hylton
2000-02-10
*
add ExampleASTVisitor:
Jeremy Hylton
2000-02-10
*
add optional verbose arg to walk function. it overrides the global
Jeremy Hylton
2000-02-08
*
now produces valid pyc files for a least a trivial subset of the
Jeremy Hylton
2000-02-08
*
rapid evolution towards producing real .pyc files (even though I don't
Jeremy Hylton
2000-02-04
*
checking in initial weekend's work
Jeremy Hylton
2000-02-04
[prev]