Skip to content

Commit f85daed

Browse files
authored
Update subdomain-visit-count.py
1 parent 8b4cfc6 commit f85daed

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

Python/subdomain-visit-count.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,16 +57,10 @@
5757
defaultdict.iteritems
5858
except AttributeError:
5959
# Python 3
60-
def itervalues(d):
61-
return iter(d.values())
62-
6360
def iteritems(d):
6461
return iter(d.items())
6562
else:
6663
# Python 2
67-
def itervalues(d):
68-
return d.itervalues()
69-
7064
def iteritems(d):
7165
return d.iteritems()
7266

0 commit comments

Comments
 (0)