summarylogtreecommitdiffstats
path: root/fontbuilder-python3.patch
diff options
context:
space:
mode:
authorAdrian Perez de Castro2020-10-26 16:13:57 +0200
committerAdrian Perez de Castro2020-10-26 16:13:57 +0200
commit63d8b2108188661265bcd73dfb520e1676fd9df2 (patch)
treec50efe6e0d5d89432d6f758dbac102f4f328a893 /fontbuilder-python3.patch
parent452910ce6997c7c6bb4864b66d551defae08d95c (diff)
downloadaur-ttf-monoid-git.tar.gz
Remove unneeded fontbuilder patch
Diffstat (limited to 'fontbuilder-python3.patch')
-rw-r--r--fontbuilder-python3.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/fontbuilder-python3.patch b/fontbuilder-python3.patch
deleted file mode 100644
index 38ee86fc43d1..000000000000
--- a/fontbuilder-python3.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff --git a/fontbuilder.py b/fontbuilder.py
-index c8d8ea5..5442246 100755
---- a/fontbuilder.py
-+++ b/fontbuilder.py
-@@ -58,9 +58,9 @@ def permutations():
- bitmap_max = 1 << count
-
- # Iterate over all possible permutations
-- for i in xrange(bitmap_max):
-+ for i in range(bitmap_max):
- # Map the iteration's permutations using a bitmap
-- bitmap = [i >> n & 1 for n in xrange(count)]
-+ bitmap = [i >> n & 1 for n in range(count)]
- for opts in _expand_options(bitmap):
- yield(int(float(i)/bitmap_max*100), opts)
-