Skip to content

Commit ee7edf7

Browse files
committed
noprint
1 parent d48b33f commit ee7edf7

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/flint/types/fmpz.pyx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,11 @@ cdef fmpz_get_intlong(fmpz_t x):
2020
"""
2121
cdef char * s
2222
if COEFF_IS_MPZ(x[0]):
23-
print("fmpz_get_intlong: 1")
2423
s = fmpz_get_str(NULL, 16, x)
25-
print("fmpz_get_intlong: 2")
2624
v = int(bytes(s).decode('ascii'), 16)
27-
print("fmpz_get_intlong: 3")
2825
libc.stdlib.free(s)
29-
print("fmpz_get_intlong: 4")
3026
return v
3127
else:
32-
print("fmpz_get_intlong: small")
3328
return <slong>x[0]
3429

3530
cdef int fmpz_set_any_ref(fmpz_t x, obj):

0 commit comments

Comments
 (0)