On Sun, Feb 2, 2020 at 5:51 AM Chin-Hung Lin <jephian...@gmail.com> wrote:
>
> I am able to resolve the issue by modifying
>
> bits.limbs = (size - 1) / (8 * sizeof(mp_limb_t)) + 1
>
> to integer division
>
> bits.limbs = (size - 1) // (8 * sizeof(mp_limb_t)) + 1
>
>
> However, I doubt that this is the correct way to fix it?
> 1. If this is correct, should I send initiate a ticket to correct th code on 
> SageMath?

this appears to be a kind of bug in the %%cython magic, which fails to
take into account
that in Python 3 '/' is no longer integer division.

I've opened a ticket - probably we need to make sure that *.pxi files
do not contain Python2-only code.
https://trac.sagemath.org/ticket/29139



> 2. If not, what is the better way to avoid this error?
>
> --
> You received this message because you are subscribed to the Google Groups 
> "sage-support" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to sage-support+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/sage-support/3d097abf-b27d-4d61-904b-3d55a82de578%40googlegroups.com.

-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-devel/CAAWYfq332-mkjfx3iF8n8sonjh_mBt%3D5Y9J8OBUtyYhrziWKZw%40mail.gmail.com.

Reply via email to