summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-12-05 23:27:02 (GMT)
committerGuido van Rossum <guido@python.org>1996-12-05 23:27:02 (GMT)
commit80bb9655f0e0843199b46719b032f2dc737cf013 (patch)
treeed12a68ba0a32b61f9c24346b40d46437e506e71 /Python/compile.c
parented0af8fe702505001c67ec5e233fb84944529f7e (diff)
downloadcpython-80bb9655f0e0843199b46719b032f2dc737cf013.zip
cpython-80bb9655f0e0843199b46719b032f2dc737cf013.tar.gz
cpython-80bb9655f0e0843199b46719b032f2dc737cf013.tar.bz2
Keep gcc -Wall happy.
Diffstat (limited to 'Python/compile.c')
-rw-r--r--Python/compile.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 1c38cf4..adb0d09 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -994,7 +994,6 @@ com_sliceobj(c, n)
{
int i=0;
int ns=2; /* number of slice arguments */
- int first_missing=0;
node *ch;
/* first argument */
@@ -2871,7 +2870,7 @@ optimize(c)
{
unsigned char *next_instr, *cur_instr;
int opcode;
- int oparg;
+ int oparg = 0;
object *name;
object *error_type, *error_value, *error_traceback;