Skip to content

Commit 4d5efc6

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/rings/integer.pyx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3826,9 +3826,9 @@ cdef class Integer(sage.structure.element.EuclideanDomainElement):
38263826
mpz_set_ui(x.value, 2)
38273827
return x
38283828
if start <= 3 and mpz_divisible_ui_p(self.value, 3):
3829-
mpz_set_ui(x.value,3)
3829+
mpz_set_ui(x.value, 3)
38303830
return x
3831-
if start <= 5 and mpz_divisible_ui_p(self.value,5):
3831+
if start <= 5 and mpz_divisible_ui_p(self.value, 5):
38323832
mpz_set_ui(x.value, 5)
38333833
return x
38343834

0 commit comments

Comments
 (0)