|
This patch adds a 'yield from' statement to Python 2.6
as specified in the draft PEP here:
http://www.cosc.canterbury.ac.nz/greg.ewing/python/yield-from/
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+387 lines, -106 lines) |
Patch |
|
M |
Grammar/Grammar
|
View
|
|
3 chunks |
+6 lines, -3 lines |
0 comments
|
Download
|
|
M |
Include/frameobject.h
|
View
|
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
|
M |
Include/genobject.h
|
View
|
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
|
M |
Include/opcode.h
|
View
|
|
2 chunks |
+1 line, -2 lines |
0 comments
|
Download
|
|
M |
Include/pyerrors.h
|
View
|
|
2 chunks |
+10 lines, -0 lines |
0 comments
|
Download
|
|
M |
Lib/compiler/ast.py
|
View
|
|
1 chunk |
+2 lines, -1 line |
0 comments
|
Download
|
|
M |
Lib/compiler/transformer.py
|
View
|
|
1 chunk |
+9 lines, -3 lines |
0 comments
|
Download
|
|
M |
Lib/opcode.py
|
View
|
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
|
M |
Lib/symbol.py
|
View
|
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
|
M |
Lib/test/test_generators.py
|
View
|
|
3 chunks |
+3 lines, -44 lines |
0 comments
|
Download
|
|
M |
Lib/test/test_grammar.py
|
View
|
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
|
M |
Lib/test/test_parser.py
|
View
|
|
1 chunk |
+4 lines, -0 lines |
0 comments
|
Download
|
|
M |
Lib/test/test_sys.py
|
View
|
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
|
M |
Modules/parsermodule.c
|
View
|
|
5 chunks |
+63 lines, -17 lines |
0 comments
|
Download
|
|
M |
Objects/exceptions.c
|
View
|
|
1 chunk |
+63 lines, -3 lines |
0 comments
|
Download
|
|
M |
Objects/frameobject.c
|
View
|
|
5 chunks |
+5 lines, -0 lines |
0 comments
|
Download
|
|
M |
Objects/genobject.c
|
View
|
|
6 chunks |
+148 lines, -10 lines |
0 comments
|
Download
|
|
M |
Parser/Python.asdl
|
View
|
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
|
M |
Python/ast.c
|
View
|
|
3 chunks |
+20 lines, -5 lines |
0 comments
|
Download
|
|
M |
Python/ceval.c
|
View
|
|
1 chunk |
+39 lines, -0 lines |
0 comments
|
Download
|
|
M |
Python/compile.c
|
View
|
|
2 chunks |
+7 lines, -1 line |
0 comments
|
Download
|
|
M |
Python/symtable.c
|
View
|
|
2 chunks |
+0 lines, -14 lines |
0 comments
|
Download
|
|