aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2005-11-13 19:14:20 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2005-11-13 19:14:20 +0000
commit7b5a604d247e8446dbcb208ab2b1e231eff1e9cf (patch)
tree4e5a45b76fbc7efe4f586318fe22ee40eb9aab18 /Include/asdl.h
parentUpdated gentoo to 2005.0 (diff)
downloadcpython-7b5a604d247e8446dbcb208ab2b1e231eff1e9cf.tar.gz
cpython-7b5a604d247e8446dbcb208ab2b1e231eff1e9cf.tar.bz2
cpython-7b5a604d247e8446dbcb208ab2b1e231eff1e9cf.zip
Whoops, checkin consistent versions of *all* files to stop polluting
a bunch of names
Diffstat (limited to 'Include/asdl.h')
-rw-r--r--Include/asdl.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/Include/asdl.h b/Include/asdl.h
index 8ad46faf7d4..cf059672a7c 100644
--- a/Include/asdl.h
+++ b/Include/asdl.h
@@ -44,11 +44,4 @@ void asdl_seq_free(asdl_seq *);
#endif
#define asdl_seq_LEN(S) ((S) == NULL ? 0 : (S)->size)
-/* Routines to marshal the basic types. */
-int marshal_write_int(PyObject **, int *, int);
-int marshal_write_bool(PyObject **, int *, bool);
-int marshal_write_identifier(PyObject **, int *, identifier);
-int marshal_write_string(PyObject **, int *, string);
-int marshal_write_object(PyObject **, int *, object);
-
#endif /* !Py_ASDL_H */