diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2005-11-13 18:41:28 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2005-11-13 18:41:28 +0000 |
commit | 6576bd844fb49b37ebbfc6d7567bcd495ddbdbae (patch) | |
tree | c0cc3005994e22c8cc9cdae40872749279c9ba2f /Python/future.c | |
parent | delete Python-ast.[ch] in distclean (diff) | |
download | cpython-6576bd844fb49b37ebbfc6d7567bcd495ddbdbae.tar.gz cpython-6576bd844fb49b37ebbfc6d7567bcd495ddbdbae.tar.bz2 cpython-6576bd844fb49b37ebbfc6d7567bcd495ddbdbae.zip |
Prevent name pollution by making lots of internal functions static.
Diffstat (limited to 'Python/future.c')
-rw-r--r-- | Python/future.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/future.c b/Python/future.c index a0cfeac63ae..2f593ac7317 100644 --- a/Python/future.c +++ b/Python/future.c @@ -46,7 +46,7 @@ future_check_features(PyFutureFeatures *ff, stmt_ty s, const char *filename) return 1; } -int +static int future_parse(PyFutureFeatures *ff, mod_ty mod, const char *filename) { int i, found_docstring = 0, done = 0, prev_line = 0; |