summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2005-11-13 18:41:28 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2005-11-13 18:41:28 (GMT)
commit6576bd844fb49b37ebbfc6d7567bcd495ddbdbae (patch)
treec0cc3005994e22c8cc9cdae40872749279c9ba2f /Include
parentf6a904456e6d0ce96d5ed6456eec8eaec8f92f75 (diff)
downloadcpython-6576bd844fb49b37ebbfc6d7567bcd495ddbdbae.zip
cpython-6576bd844fb49b37ebbfc6d7567bcd495ddbdbae.tar.gz
cpython-6576bd844fb49b37ebbfc6d7567bcd495ddbdbae.tar.bz2
Prevent name pollution by making lots of internal functions static.
Diffstat (limited to 'Include')
-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 0859acf..abc5bcb 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);