Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 2a96eb2

Browse files
committed
16516: xrange -> range
1 parent 6bdb88f commit 2a96eb2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/sage/rings/integer_ring.pyx

+5-5
Original file line numberDiff line numberDiff line change
@@ -1365,7 +1365,7 @@ cdef class IntegerRing_class(PrincipalIdealDomain):
13651365
# Looking for "large" gaps in the exponents
13661366
# These gaps split the polynomial into lower degree components
13671367
# Roots of modulus > 1 are common roots of the components
1368-
for i in xrange(1, k):
1368+
for i in range(1, k):
13691369
if e[i] - e[i-1] > c_max_nbits:
13701370
g = g.gcd(R({e[j] - e[i_min]: c[j] for j in range(i_min,i)}))
13711371
if g.is_one(): break
@@ -1407,9 +1407,9 @@ cdef class IntegerRing_class(PrincipalIdealDomain):
14071407
m1 = m2 = 0
14081408
b1 = b2 = True
14091409

1410-
for i in xrange(k):
1410+
for i in range(k):
14111411
s1 = s2 = 0
1412-
for j in xrange(k-i):
1412+
for j in range(k-i):
14131413
if b1: s1 += cc[j]
14141414
if b2: s2 += -cc[j] if (ee[j] % 2) else cc[j]
14151415
if b1 and s1:
@@ -1423,8 +1423,8 @@ cdef class IntegerRing_class(PrincipalIdealDomain):
14231423
break
14241424

14251425
# Sparse derivative, that is (p/x^v)' where v = p.val():
1426-
ee = [ee[j] - ee[0] - 1 for j in xrange(1,k-i)]
1427-
cc = [(ee[j] + 1) * cc[j+1] for j in xrange(k-i-1)]
1426+
ee = [ee[j] - ee[0] - 1 for j in range(1,k-i)]
1427+
cc = [(ee[j] + 1) * cc[j+1] for j in range(k-i-1)]
14281428

14291429
if m1 > 0:
14301430
roots.append((1, m1))

0 commit comments

Comments
 (0)