summaryrefslogtreecommitdiff
path: root/dev-util/gprof2dot/files/gprof2dot-0_p20130517-py3-xrange.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-util/gprof2dot/files/gprof2dot-0_p20130517-py3-xrange.patch
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-util/gprof2dot/files/gprof2dot-0_p20130517-py3-xrange.patch')
-rw-r--r--dev-util/gprof2dot/files/gprof2dot-0_p20130517-py3-xrange.patch10
1 files changed, 0 insertions, 10 deletions
diff --git a/dev-util/gprof2dot/files/gprof2dot-0_p20130517-py3-xrange.patch b/dev-util/gprof2dot/files/gprof2dot-0_p20130517-py3-xrange.patch
deleted file mode 100644
index 228b1d8230d7..000000000000
--- a/dev-util/gprof2dot/files/gprof2dot-0_p20130517-py3-xrange.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- 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()