diff options
author | Georg Brandl <georg@python.org> | 2007-02-09 21:28:07 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-02-09 21:28:07 +0000 |
commit | 24838a8552ed8fa15c86b4dc2537bae4282f7219 (patch) | |
tree | ffd00c6ddc09c8e6e215133f6270515c7b64ccb9 /Include | |
parent | 45a4fb798d669927858f2b28dec69904b0f76fb6 (diff) | |
download | cpython-24838a8552ed8fa15c86b4dc2537bae4282f7219.tar.gz |
* Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes.
* Fix some docstrings and one Print -> print.
* Fix test_{class,code,descrtut,dis,extcall,parser,popen,pkg,subprocess,syntax,traceback}.
These were the ones that generated code with a print statement.
In most remaining failing tests there's an issue with the soft space.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/Python-ast.h | 20 | ||||
-rw-r--r-- | Include/opcode.h | 5 |
2 files changed, 6 insertions, 19 deletions
diff --git a/Include/Python-ast.h b/Include/Python-ast.h index 5e8f81fc09..c9fbc07429 100644 --- a/Include/Python-ast.h +++ b/Include/Python-ast.h @@ -62,12 +62,11 @@ struct _mod { }; enum _stmt_kind {FunctionDef_kind=1, ClassDef_kind=2, Return_kind=3, - Delete_kind=4, Assign_kind=5, AugAssign_kind=6, Print_kind=7, - For_kind=8, While_kind=9, If_kind=10, With_kind=11, - Raise_kind=12, TryExcept_kind=13, TryFinally_kind=14, - Assert_kind=15, Import_kind=16, ImportFrom_kind=17, - Global_kind=18, Expr_kind=19, Pass_kind=20, Break_kind=21, - Continue_kind=22}; + Delete_kind=4, Assign_kind=5, AugAssign_kind=6, For_kind=7, + While_kind=8, If_kind=9, With_kind=10, Raise_kind=11, + TryExcept_kind=12, TryFinally_kind=13, Assert_kind=14, + Import_kind=15, ImportFrom_kind=16, Global_kind=17, + Expr_kind=18, Pass_kind=19, Break_kind=20, Continue_kind=21}; struct _stmt { enum _stmt_kind kind; union { @@ -105,12 +104,6 @@ struct _stmt { } AugAssign; struct { - expr_ty dest; - asdl_seq *values; - bool nl; - } Print; - - struct { expr_ty target; expr_ty iter; asdl_seq *body; @@ -392,9 +385,6 @@ stmt_ty _Py_Assign(asdl_seq * targets, expr_ty value, int lineno, int #define AugAssign(a0, a1, a2, a3, a4, a5) _Py_AugAssign(a0, a1, a2, a3, a4, a5) stmt_ty _Py_AugAssign(expr_ty target, operator_ty op, expr_ty value, int lineno, int col_offset, PyArena *arena); -#define Print(a0, a1, a2, a3, a4, a5) _Py_Print(a0, a1, a2, a3, a4, a5) -stmt_ty _Py_Print(expr_ty dest, asdl_seq * values, bool nl, int lineno, int - col_offset, PyArena *arena); #define For(a0, a1, a2, a3, a4, a5, a6) _Py_For(a0, a1, a2, a3, a4, a5, a6) stmt_ty _Py_For(expr_ty target, expr_ty iter, asdl_seq * body, asdl_seq * orelse, int lineno, int col_offset, PyArena *arena); diff --git a/Include/opcode.h b/Include/opcode.h index 04675ddbc8..007816d8b3 100644 --- a/Include/opcode.h +++ b/Include/opcode.h @@ -61,10 +61,7 @@ extern "C" { #define GET_ITER 68 #define PRINT_EXPR 70 -#define PRINT_ITEM 71 -#define PRINT_NEWLINE 72 -#define PRINT_ITEM_TO 73 -#define PRINT_NEWLINE_TO 74 + #define INPLACE_LSHIFT 75 #define INPLACE_RSHIFT 76 #define INPLACE_AND 77 |