changeset 39032:2673a181e856

vfs: remove unused variable inside base VFS
author Dmitry Selyutin <ghostmansd@gmail.com>
date Sun, 08 Oct 2017 22:08:56 +0300
parents 0699d5dc603a
children d12ca012cd9d
files pygnulib/vfs.py
diffstat 1 files changed, 0 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/pygnulib/vfs.py	Sun Oct 08 18:52:52 2017 +0300
+++ b/pygnulib/vfs.py	Sun Oct 08 22:08:56 2017 +0300
@@ -20,17 +20,6 @@
 
 class Base:
     """gnulib generic virtual file system"""
-    _TABLE_ = {
-        "lib"       : "source_base",
-        "doc"       : "doc_base",
-        "m4"        : "m4_base",
-        "tests"     : "tests_base",
-        "tests=lib" : "tests_base",
-        "po"        : "po_base",
-        "build-aux" : "aux_dir",
-    }
-
-
     def __init__(self, name, **kwargs):
         _type_assert_("name", name, str)
         path = _os_.path.realpath(name)