[Python-checkins] python/dist/src/Python newcompile.c, 1.1.2.80, 1.1.2.81

nnorwitz at users.sourceforge.net nnorwitz at users.sourceforge.net
Sun Mar 21 13:59:30 EST 2004


Update of /cvsroot/python/python/dist/src/Python
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31819/Python

Modified Files:
      Tag: ast-branch
	newcompile.c 
Log Message:
minor cleanup

Index: newcompile.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/Attic/newcompile.c,v
retrieving revision 1.1.2.80
retrieving revision 1.1.2.81
diff -C2 -d -r1.1.2.80 -r1.1.2.81
*** newcompile.c	21 Mar 2004 17:14:32 -0000	1.1.2.80
--- newcompile.c	21 Mar 2004 18:59:27 -0000	1.1.2.81
***************
*** 32,35 ****
--- 32,36 ----
  
     Invalid behaviour:
+      #: Ellipsis isn't handled properly
       #: doing from __future__ import division doesn't work 
          doesn't output BINARY_TRUE_DIVISION
***************
*** 981,988 ****
  
          compiler_make_closure(c, co, asdl_seq_LEN(args->defaults));
! 	if (!compiler_nameop(c, s->v.FunctionDef.name, Store))
! 		return 0;
! 
! 	return 1;
  }
  
--- 982,986 ----
  
          compiler_make_closure(c, co, asdl_seq_LEN(args->defaults));
! 	return compiler_nameop(c, s->v.FunctionDef.name, Store);
  }
  




More information about the Python-checkins mailing list