]> granicus.if.org Git - python/commit
Implement PEP 380 - 'yield from' (closes #11682)
authorNick Coghlan <ncoghlan@gmail.com>
Fri, 13 Jan 2012 11:43:40 +0000 (21:43 +1000)
committerNick Coghlan <ncoghlan@gmail.com>
Fri, 13 Jan 2012 11:43:40 +0000 (21:43 +1000)
commit1f7ce62bd61488d5d721896a36a1b43befab88b5
treee7c92d4429ce431c78d0b7816c93862629590223
parente51757f6de9db71b7ee0a6cbf7dde62e9f146804
Implement PEP 380 - 'yield from' (closes #11682)
33 files changed:
Doc/library/dis.rst
Doc/library/exceptions.rst
Doc/reference/expressions.rst
Doc/reference/simple_stmts.rst
Doc/whatsnew/3.3.rst
Grammar/Grammar
Include/Python-ast.h
Include/frameobject.h
Include/genobject.h
Include/graminit.h
Include/opcode.h
Include/pyerrors.h
Lib/opcode.py
Lib/test/test_ast.py
Lib/test/test_generators.py
Lib/test/test_grammar.py
Lib/test/test_parser.py
Lib/test/test_sys.py
Misc/ACKS
Misc/NEWS
Modules/parsermodule.c
Objects/abstract.c
Objects/exceptions.c
Objects/frameobject.c
Objects/genobject.c
Parser/Python.asdl
Python/Python-ast.c
Python/ast.c
Python/ceval.c
Python/compile.c
Python/graminit.c
Python/opcode_targets.h
Python/symtable.c