summarylogtreecommitdiffstats
path: root/fix-pydebug.patch
diff options
context:
space:
mode:
authorPellegrino Prevete2020-06-25 00:32:20 +0200
committerPellegrino Prevete2020-06-25 00:32:20 +0200
commit87d59651ddccb8a855981c24daf7f0c4ac710505 (patch)
tree7ca9d0dc5effc8de52274b046ee4c32424b79d60 /fix-pydebug.patch
parentf7a5ee19c3cd138a97997a4ec0f435e314409aec (diff)
downloadaur-87d59651ddccb8a855981c24daf7f0c4ac710505.tar.gz
Upgraded to 1.8.4
Diffstat (limited to 'fix-pydebug.patch')
-rw-r--r--fix-pydebug.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/fix-pydebug.patch b/fix-pydebug.patch
deleted file mode 100644
index 43bb21b50fcb..000000000000
--- a/fix-pydebug.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- python-apt-0.8.8.1/tests/test_all.py 2013-01-29 17:19:38.706662531 +0100
-+++ python-apt-0.8.8.1_new/tests/test_all.py 2013-01-29 17:17:22.816301842 +0100
-@@ -12,7 +12,7 @@
- # workaround for py3.2 that apparently does not have this anymore
- # it has "abiflags"
- if not hasattr(sys, "pydebug"):
-- if sys.abiflags.startswith("d"):
-+ if hasattr(sys, "abiflags") and sys.abiflags.startswith("d"):
- sys.pydebug = True
- else:
- sys.pydebug = False