aboutsummaryrefslogtreecommitdiffstats
path: root/tools/asn2wrs.py
diff options
context:
space:
mode:
authorkukosa <kukosa@f5534014-38df-0310-8fa8-9805f1628bb7>2007-06-25 10:26:21 +0000
committerkukosa <kukosa@f5534014-38df-0310-8fa8-9805f1628bb7>2007-06-25 10:26:21 +0000
commitd28168b313860082229f6e52cab9f99158e34f87 (patch)
tree66be757eaab34933e92ba52050866feda52b0513 /tools/asn2wrs.py
parent411d2c7e2fe6dc590c48516787155dafbbec2c25 (diff)
comment out some forgotten debug printouts
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22185 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tools/asn2wrs.py')
-rwxr-xr-xtools/asn2wrs.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/asn2wrs.py b/tools/asn2wrs.py
index 5a649d23bb..919fc03dab 100755
--- a/tools/asn2wrs.py
+++ b/tools/asn2wrs.py
@@ -996,7 +996,7 @@ class EthCtx:
self.type[t]['val'].eth_reg_sub(t, self, components_available=True)
#--- required selection types ---------------------------
- print "self.sel_req_ord = ", self.sel_req_ord
+ #print "self.sel_req_ord = ", self.sel_req_ord
for t in self.sel_req_ord:
tt = self.sel_req[t]['typ']
if not self.type.has_key(tt):
@@ -2826,7 +2826,6 @@ class Type (Node):
def eth_reg(self, ident, ectx, tstrip=0, tagflag=False, selflag=False, idx='', parent=None):
#print "eth_reg(): %s, ident=%s, tstrip=%d, tagflag=%s, selflag=%s, parent=%s" %(self.type, ident, tstrip, str(tagflag), str(selflag), str(parent))
- if (selflag): print "eth_reg(): %s, ident=%s, tstrip=%d, tagflag=%s, selflag=%s, parent=%s" %(self.type, ident, tstrip, str(tagflag), str(selflag), str(parent))
if (ectx.Tag() and (len(self.tags) > tstrip)):
tagged_type = TaggedType(val=self, tstrip=tstrip)
tagged_type.AddTag(self.tags[tstrip])
@@ -3924,7 +3923,7 @@ class ChoiceType (Type):
return ee
def sel_req(self, ident, sel, ectx):
- print "sel_req(ident='%s', sel=%s)\n%s" % (ident, sel, str(self))
+ #print "sel_req(ident='%s', sel=%s)\n%s" % (ident, sel, str(self))
ee = self.sel_item(ident, sel, ectx)
if ee:
ee.eth_reg(ident, ectx, tstrip=0, selflag=True)