Menu

#1 gmpy.c has a typo, fix is as below

closed
nobody
None
5
2003-08-08
2003-03-07
Anonymous
No

On line 5053 of the gmpy.c module, the compiler chokes
because
it tries to access a member of a struct that does not
exist.

The line as it is

mpz_set (resob->z, randstate->seed);

As it needs to be to compile

mpz_set (resob->z, randstate->_mp_seed);

Discussion

  • Alex Martelli

    Alex Martelli - 2003-08-08

    Logged In: YES
    user_id=60314

    was already solved in CVS, now release 1.0 which solves it

     
  • Alex Martelli

    Alex Martelli - 2003-08-08
    • status: open --> closed
     

Log in to post a comment.