[Python-checkins] CVS: python/nondist/peps pep-0237.txt,1.1,1.2

Moshe Zadka moshez@users.sourceforge.net
Fri, 16 Mar 2001 05:02:26 -0800


Update of /cvsroot/python/python/nondist/peps
In directory usw-pr-cvs1:/tmp/cvs-serv1373

Modified Files:
	pep-0237.txt 
Log Message:
Bug fix in implementation sketch, and some implementation open issues.


Index: pep-0237.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0237.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** pep-0237.txt	2001/03/16 04:11:01	1.1
--- pep-0237.txt	2001/03/16 13:02:23	1.2
***************
*** 79,86 ****
          union {
              long i;
!             struct bignum {
                  unsigned long length;
                  digit digits[1];
!             }
          };
  
--- 79,86 ----
          union {
              long i;
!             struct {
                  unsigned long length;
                  digit digits[1];
!             } bignum;
          };
  
***************
*** 108,111 ****
--- 108,114 ----
  
      Should the overflow warning be on a portable maximum size?
+ 
+     Will unification of types and classes help with a more straightforward
+     implementations?