Skip to content

Commit ffe9cc1

Browse files
author
Stefan Behnel
committed
use unsigned C comparison instead of mixing signed and unsigned to avoid undefined behaviour
1 parent 0ea1856 commit ffe9cc1

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGES.rst

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ ChangeLog
77

88
* repair the faster instantiation from Decimal values in Python 3.6
99

10+
* avoid potential glitch for certain large numbers in normalisation under Python 2.x
11+
1012

1113
1.2 (2016-04-08)
1214
----------------

src/quicktions.pyx

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ from cpython.version cimport PY_MAJOR_VERSION
2929

3030
cdef extern from *:
3131
ctypedef long Py_hash_t
32+
cdef long LONG_MAX
3233

3334
cdef object Rational, Decimal, math, numbers, sys, re, operator
3435

@@ -63,7 +64,7 @@ cpdef _gcd(a, b):
6364
while bu:
6465
au, bu = bu, au%bu
6566
# try PyInt downcast in Py2
66-
if PY_MAJOR_VERSION < 3 and au == <long>au:
67+
if PY_MAJOR_VERSION < 3 and au <= <unsigned long long>LONG_MAX:
6768
return <long>au
6869
return au
6970
a, b = b, a%b

0 commit comments

Comments
 (0)