summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2012-01-31 14:58:14 +0100
committerMichael Vogt <michael.vogt@ubuntu.com>2012-01-31 14:58:14 +0100
commit6f538d96ec35e80e19f1b33cad86b9ae45da54f5 (patch)
tree6fc54fdc087996fed0544d26c46e6f65385fd924
parentaccf60bda95e6a1bad53f26412b12a32f136d54d (diff)
downloadpython-apt-6f538d96ec35e80e19f1b33cad86b9ae45da54f5.tar.gz
apt/debfile.py: kill _supported_data_members its actually not used anymore and instead done dynamically in arfile.cc using the APT::Configuration::getCompressionTypes() call (yeah!)
-rw-r--r--apt/debfile.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/apt/debfile.py b/apt/debfile.py
index 6a189502..2eb807b8 100644
--- a/apt/debfile.py
+++ b/apt/debfile.py
@@ -40,13 +40,6 @@ class DebPackage(object):
VERSION_SAME,
VERSION_NEWER) = range(4)
- _supported_data_members = (
- "data.tar.gz",
- "data.tar.bz2",
- "data.tar.lzma",
- "data.tar.xz",
- )
-
debug = 0
def __init__(self, filename=None, cache=None):