]> Savannah Git Hosting - gnulib.git/commitdiff
vfs: remove unused variable inside base VFS
authorDmitry Selyutin <ghostmansd@gmail.com>
Sun, 8 Oct 2017 19:08:56 +0000 (22:08 +0300)
committerDmitry Selyutin <ghostmansd@gmail.com>
Sun, 8 Oct 2017 19:08:56 +0000 (22:08 +0300)
pygnulib/vfs.py

index fcabeb524da4504c274c6459579147f7ecc0d515..cb514fc8b3c450026e9196581b456e15fa9eddb4 100644 (file)
@@ -20,17 +20,6 @@ from .module import File as _FileModule_
 
 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)