diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2005-11-13 01:08:38 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2005-11-13 01:08:38 (GMT) |
commit | 2744c6cc356d6495cb1bae3ed165e2f5b7d6e7ec (patch) | |
tree | b3be90f297babba023d156c742d610787cc72e2d /Python/compile.c | |
parent | 96c1c7a571642e5955d7608830b69067760623f0 (diff) | |
download | cpython-2744c6cc356d6495cb1bae3ed165e2f5b7d6e7ec.zip cpython-2744c6cc356d6495cb1bae3ed165e2f5b7d6e7ec.tar.gz cpython-2744c6cc356d6495cb1bae3ed165e2f5b7d6e7ec.tar.bz2 |
make internal method static
Diffstat (limited to 'Python/compile.c')
-rw-r--r-- | Python/compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c index 5195f56..4649d32 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -3625,7 +3625,7 @@ dfs(struct compiler *c, basicblock *b, struct assembler *a) a->a_postorder[a->a_nblocks++] = b; } -int +static int stackdepth_walk(struct compiler *c, basicblock *b, int depth, int maxdepth) { int i; |