summaryrefslogtreecommitdiff
path: root/Include/Python-ast.h
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2005-11-13 18:41:28 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2005-11-13 18:41:28 +0000
commit14a34de7b477cb3d46c61037021da9edf3561d7b (patch)
treebf3e77685c770bb70163d4ddcd8559d31d611b9c /Include/Python-ast.h
parentd5c9bbd4a035a2966aa100e288dc86ee397cb394 (diff)
downloadcpython-14a34de7b477cb3d46c61037021da9edf3561d7b.tar.gz
Prevent name pollution by making lots of internal functions static.
Diffstat (limited to 'Include/Python-ast.h')
-rw-r--r--Include/Python-ast.h16
1 files changed, 1 insertions, 15 deletions
diff --git a/Include/Python-ast.h b/Include/Python-ast.h
index 0859acf251..abc5bcba13 100644
--- a/Include/Python-ast.h
+++ b/Include/Python-ast.h
@@ -1,4 +1,4 @@
-/* File automatically generated by ../Parser/asdl_c.py */
+/* File automatically generated by ./Parser/asdl_c.py */
#include "asdl.h"
@@ -402,17 +402,3 @@ void free_excepthandler(excepthandler_ty);
void free_arguments(arguments_ty);
void free_keyword(keyword_ty);
void free_alias(alias_ty);
-int marshal_write_mod(PyObject **, int *, mod_ty);
-int marshal_write_stmt(PyObject **, int *, stmt_ty);
-int marshal_write_expr(PyObject **, int *, expr_ty);
-int marshal_write_expr_context(PyObject **, int *, expr_context_ty);
-int marshal_write_slice(PyObject **, int *, slice_ty);
-int marshal_write_boolop(PyObject **, int *, boolop_ty);
-int marshal_write_operator(PyObject **, int *, operator_ty);
-int marshal_write_unaryop(PyObject **, int *, unaryop_ty);
-int marshal_write_cmpop(PyObject **, int *, cmpop_ty);
-int marshal_write_comprehension(PyObject **, int *, comprehension_ty);
-int marshal_write_excepthandler(PyObject **, int *, excepthandler_ty);
-int marshal_write_arguments(PyObject **, int *, arguments_ty);
-int marshal_write_keyword(PyObject **, int *, keyword_ty);
-int marshal_write_alias(PyObject **, int *, alias_ty);