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 | 14a34de7b477cb3d46c61037021da9edf3561d7b (patch) | |
tree | bf3e77685c770bb70163d4ddcd8559d31d611b9c /Python/future.c | |
parent | d5c9bbd4a035a2966aa100e288dc86ee397cb394 (diff) | |
download | cpython-14a34de7b477cb3d46c61037021da9edf3561d7b.tar.gz |
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 a0cfeac63a..2f593ac731 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; |