Remove debug print
This commit is contained in:
@@ -47,6 +47,9 @@ For news, bugfixes, etc. visit the home page for this implementation at
|
|||||||
# Terrence is not responding to email.
|
# Terrence is not responding to email.
|
||||||
#
|
#
|
||||||
# $Log$
|
# $Log$
|
||||||
|
# Revision 1.9 2005/07/15 22:17:41 customdesigned
|
||||||
|
# Latest pyspf updates
|
||||||
|
#
|
||||||
# Revision 1.15 2005/07/15 21:17:36 customdesigned
|
# Revision 1.15 2005/07/15 21:17:36 customdesigned
|
||||||
# Recursion limit raises AssertionError in strict mode, PermError otherwise.
|
# Recursion limit raises AssertionError in strict mode, PermError otherwise.
|
||||||
#
|
#
|
||||||
@@ -758,7 +761,6 @@ class query(object):
|
|||||||
if a['typename'] == 'MX':
|
if a['typename'] == 'MX':
|
||||||
mxcount = mxcount + 1
|
mxcount = mxcount + 1
|
||||||
if mxcount > MAX_MX:
|
if mxcount > MAX_MX:
|
||||||
print mxcount,self.strict,self.perm_error
|
|
||||||
try:
|
try:
|
||||||
if self.strict or not self.perm_error:
|
if self.strict or not self.perm_error:
|
||||||
raise PermError('Too many MX lookups')
|
raise PermError('Too many MX lookups')
|
||||||
@@ -766,7 +768,6 @@ class query(object):
|
|||||||
if self.strict or mxcount > MAX_MX*4:
|
if self.strict or mxcount > MAX_MX*4:
|
||||||
raise x
|
raise x
|
||||||
self.perm_error = x
|
self.perm_error = x
|
||||||
print "lax"
|
|
||||||
if a['typename'] == 'PTR':
|
if a['typename'] == 'PTR':
|
||||||
ptrcount = ptrcount + 1
|
ptrcount = ptrcount + 1
|
||||||
if ptrcount > MAX_PTR:
|
if ptrcount > MAX_PTR:
|
||||||
|
|||||||
Reference in New Issue
Block a user