Skip to content

Commit eabf53c

Browse files
committed
Trac #33234: fix python-3.10 deprecation warning in polynomial roots.
We're passing a float to python's random.randrange, and randrange isn't happy about that in python-3.10: DeprecationWarning: non-integer arguments to randrange() have been deprecated since Python 3.10 and will be removed in a subsequent version Fortunately the float in question is integral, and we can simply replace qdiv = div / 4 with qdiv = div // 4 to get an int that randrange will tolerate.
1 parent 97d550d commit eabf53c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/rings/polynomial/real_roots.pyx

+2-2
Original file line numberDiff line numberDiff line change
@@ -408,9 +408,9 @@ cdef class interval_bernstein_polynomial:
408408
# A different algorithm here might be more efficient.
409409

410410
div = 1024
411-
while self.degree() >= div//4:
411+
while self.degree() >= (div // 4):
412412
div = div * 2
413-
qdiv = div/4
413+
qdiv = div // 4 # divides evenly since div = 1024*2^k
414414
rand = Integer(ctx.random.randrange(qdiv, 3*qdiv)) / div
415415
(p1, p2, ok) = self.de_casteljau(ctx, rand)
416416
ctx.dc_log_append(("div" + self._type_code(), self.scale_log2, self.bitsize, rand, ok, logging_note))

0 commit comments

Comments
 (0)