Skip to content

Commit ff0fc23

Browse files
committed
noprint
1 parent aa5aced commit ff0fc23

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/flint/types/fmpz.pyx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,12 @@ cdef fmpz_get_intlong(fmpz_t x):
2020
Convert fmpz_t to a Python int or long.
2121
"""
2222
cdef char * s
23-
print("fmpz_get_intlong: 0")
2423
if COEFF_IS_MPZ(x[0]):
25-
print("fmpz_get_intlong: 1", flush=True)
2624
s = fmpz_get_str(NULL, 16, x)
27-
print("fmpz_get_intlong: 2", flush=True)
2825
v = int(bytes(s).decode('ascii'), 16)
29-
print("fmpz_get_intlong: 3", flush=True)
3026
flint_free(s)
31-
print("fmpz_get_intlong: 4", flush=True)
3227
return v
3328
else:
34-
print("fmpz_get_intlong: small", flush=True)
3529
return <slong>x[0]
3630

3731
cdef int fmpz_set_any_ref(fmpz_t x, obj):

0 commit comments

Comments
 (0)