[Python-checkins] python/dist/src/Include asdl.h,1.1.2.4,1.1.2.5

bcannon at users.sourceforge.net bcannon at users.sourceforge.net
Sun Sep 14 20:25:09 EDT 2003


Update of /cvsroot/python/python/dist/src/Include
In directory sc8-pr-cvs1:/tmp/cvs-serv2923/Include

Modified Files:
      Tag: ast-branch
	asdl.h 
Log Message:
Add comment about why the #ifdef for the various asdl_seq_* macros is what it is for Py_DEBUG

Index: asdl.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/Attic/asdl.h,v
retrieving revision 1.1.2.4
retrieving revision 1.1.2.5
diff -C2 -d -r1.1.2.4 -r1.1.2.5
*** asdl.h	24 Mar 2003 23:37:43 -0000	1.1.2.4
--- asdl.h	15 Sep 2003 00:25:07 -0000	1.1.2.5
***************
*** 27,30 ****
--- 27,32 ----
  void asdl_seq_free(asdl_seq *);
  
+ /* XXX: Normally should be Py_DEBUG, but asserts fail instantly at startup;
+         turned off for now */
  #define asdl_seq_GET(S, I) (S)->elements[(I)]
  #ifdef Py_DEBUG





More information about the Python-checkins mailing list