Message75518
> As for marhsalled data and pyc compatibility, yes that is important to
> consider.
The problem is also that with the 30-bit digit patch, some Python will use 15
bits whereas some other will use 30 bits. The base in marshal should be the
same in both cases.
And why 30 bits and not 31 bits, or 63 bits, or 120 bits? We may use other
bases in the future. That's why I prefer to use a common base like base 256.
And GMP has functions (mpz_import) to load data in base 256, but it's more
complicate to load data in base 2^15. |
|
Date |
User |
Action |
Args |
2008-11-05 08:55:59 | vstinner | set | recipients:
+ vstinner, gregory.p.smith, mark.dickinson, christian.heimes |
2008-11-05 08:55:58 | vstinner | link | issue4258 messages |
2008-11-05 08:55:58 | vstinner | create | |
|