summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-08-09 21:14:45 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-08-09 21:14:45 (GMT)
commit450bb594c8be8aca2782c0a862b27d9fa79160b0 (patch)
treea9d9690ebdaa55d33b78c9e6ced415ddb5f52b7a
parent4dc64996137344455f8dc348bccbd7a9f3f24002 (diff)
downloadcpython-450bb594c8be8aca2782c0a862b27d9fa79160b0.zip
cpython-450bb594c8be8aca2782c0a862b27d9fa79160b0.tar.gz
cpython-450bb594c8be8aca2782c0a862b27d9fa79160b0.tar.bz2
forgotten in f578ca44193d
-rw-r--r--Include/Python-ast.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/Python-ast.h b/Include/Python-ast.h
index ea6455f..9389049 100644
--- a/Include/Python-ast.h
+++ b/Include/Python-ast.h
@@ -271,7 +271,7 @@ struct _expr {
} Str;
struct {
- string s;
+ bytes s;
} Bytes;
struct {
@@ -501,7 +501,7 @@ expr_ty _Py_Num(object n, int lineno, int col_offset, PyArena *arena);
#define Str(a0, a1, a2, a3) _Py_Str(a0, a1, a2, a3)
expr_ty _Py_Str(string s, int lineno, int col_offset, PyArena *arena);
#define Bytes(a0, a1, a2, a3) _Py_Bytes(a0, a1, a2, a3)
-expr_ty _Py_Bytes(string s, int lineno, int col_offset, PyArena *arena);
+expr_ty _Py_Bytes(bytes s, int lineno, int col_offset, PyArena *arena);
#define Ellipsis(a0, a1, a2) _Py_Ellipsis(a0, a1, a2)
expr_ty _Py_Ellipsis(int lineno, int col_offset, PyArena *arena);
#define Attribute(a0, a1, a2, a3, a4, a5) _Py_Attribute(a0, a1, a2, a3, a4, a5)