[Python-checkins] commit of r41432 - python/trunk/Python

neal.norwitz@python.org neal.norwitz at python.org
Sun Nov 13 02:08:39 CET 2005


Author: neal.norwitz
Date: Sun Nov 13 02:08:38 2005
New Revision: 41432

Modified:
   python/trunk/Python/compile.c
Log:
make internal method static

Modified: python/trunk/Python/compile.c
==============================================================================
--- python/trunk/Python/compile.c	(original)
+++ python/trunk/Python/compile.c	Sun Nov 13 02:08:38 2005
@@ -3625,7 +3625,7 @@
 	a->a_postorder[a->a_nblocks++] = b;
 }
 
-int
+static int
 stackdepth_walk(struct compiler *c, basicblock *b, int depth, int maxdepth)
 {
 	int i;


More information about the Python-checkins mailing list