From 5180c4f5cfc32b32e0cd1d1d47993843332b70b5 Mon Sep 17 00:00:00 2001 From: Moshe Zadka Date: Fri, 16 Mar 2001 13:02:23 +0000 Subject: [PATCH] Bug fix in implementation sketch, and some implementation open issues. --- pep-0237.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pep-0237.txt b/pep-0237.txt index 436973bff..8d9194c19 100644 --- a/pep-0237.txt +++ b/pep-0237.txt @@ -78,10 +78,10 @@ Implementation union { long i; - struct bignum { + struct { unsigned long length; digit digits[1]; - } + } bignum; }; Only the n-1 lower bits of the long have any meaning; the top bit @@ -108,6 +108,9 @@ Open Issues Should the overflow warning be on a portable maximum size? + Will unification of types and classes help with a more straightforward + implementations? + Copyright