summaryrefslogtreecommitdiff
path: root/dev-util/gprof2dot/files/gprof2dot-0_p20130517-py3-xrange.patch
blob: 228b1d8230d7f799222aeb2c6eb832aea920c96b (plain)
1
2
3
4
5
6
7
8
9
10
--- gprof2dot.py	2013-05-29 19:18:46.217823810 +0300
+++ gprof2dot.py	2013-06-16 12:12:28.095478734 +0300
@@ -39,6 +39,7 @@
     def compat_keys(x): return list(x.keys())  # keys() is a generator in Python 3
     basestring = str  # No class basestring in Python 3
     unichr = chr # No unichr in Python 3
+    xrange = range # No xrange in Python 3
 else:
     PYTHON_3 = False
     def compat_iteritems(x): return x.iteritems()