Skip to content

Commit 6c514c9

Browse files
fchapotonMatthias Köppe
andauthored
Update src/sage/rings/integer.pyx
Co-authored-by: Matthias Köppe <[email protected]>
1 parent 3860c75 commit 6c514c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sage/rings/integer.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3825,7 +3825,7 @@ cdef class Integer(sage.structure.element.EuclideanDomainElement):
38253825
if start <= 2 and mpz_even_p(self.value):
38263826
mpz_set_ui(x.value, 2)
38273827
return x
3828-
if start <= 3 and mpz_divisible_ui_p(self.value,3):
3828+
if start <= 3 and mpz_divisible_ui_p(self.value, 3):
38293829
mpz_set_ui(x.value,3)
38303830
return x
38313831
if start <= 5 and mpz_divisible_ui_p(self.value,5):

0 commit comments

Comments
 (0)