# HG changeset patch # User Johnny Wezel # Date 1454884859 -3600 # Node ID 644d81a7995b142fb7443e79138030875cbff6cc # Parent 26db2c025614c7db1599c53c4768892d6d1201f2 Removed debug statements diff -r 26db2c025614 -r 644d81a7995b whois/__init__.py --- a/whois/__init__.py Sun Feb 07 23:38:20 2016 +0100 +++ b/whois/__init__.py Sun Feb 07 23:40:59 2016 +0100 @@ -61,7 +61,6 @@ url = url.decode('utf-8') url = re.sub(b'^.*://', b'', url.encode('idna')).split(b'/')[0].lower() domain = [] - print('url:', url) for section in url.split(b'.'): if section in suffixes: diff -r 26db2c025614 -r 644d81a7995b whois/whois.py --- a/whois/whois.py Sun Feb 07 23:38:20 2016 +0100 +++ b/whois/whois.py Sun Feb 07 23:40:59 2016 +0100 @@ -134,7 +134,6 @@ def choose_server(self, domain): """Choose initial lookup NIC host""" - print('domain:', domain) if type(domain) is not str: domain = domain.decode('utf-8').encode('idna').decode('utf-8') if domain.endswith("-NORID"): @@ -172,7 +171,6 @@ ) elif self.use_qnichost: nichost = self.choose_server(query_arg) - print('nichost:', nichost) if nichost is not None: result = self.whois(query_arg, nichost, flags) else: