Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 5586f56

Browse files
committed
removed debug output
1 parent 37aa276 commit 5586f56

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

src/sage/rings/padics/padic_ZZ_pX_CR_element.pyx

-10
Original file line numberDiff line numberDiff line change
@@ -514,21 +514,11 @@ cdef class pAdicZZpXCRElement(pAdicZZpXElement):
514514
(..., 0, 1)
515515
516516
"""
517-
print "enter"
518517
if self._is_exact_zero():
519-
print "exact zero"
520518
return (self.parent(), 0)
521519
elif self._is_inexact_zero():
522-
print "inexact zero"
523520
return (self.parent(), 0, self.valuation())
524521
else:
525-
print "other"
526-
print self.parent()
527-
print self.valuation()
528-
print self.precision_relative()
529-
print self.unit_part().list()
530-
print tuple(tuple(c) if isinstance(c, list) else c
531-
for c in self.unit_part().list())
532522
return (self.parent(),
533523
tuple(tuple(c) if isinstance(c, list) else c
534524
for c in self.unit_part().list()),

0 commit comments

Comments
 (0)