From 52f743e6d1b4e4196e5cb1359bbcaf67737aee28 Mon Sep 17 00:00:00 2001 From: grubert Date: Wed, 4 Jul 2012 08:24:24 +0000 Subject: [PATCH] remove local docutils directory git-svn-id: https://docutils.svn.sourceforge.net/svnroot/docutils/trunk@7473 929543f6-e4f2-0310-98a6-ba3bd3dd1d04 --- sandbox/manpage-writer/docutils/__init__.py | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 sandbox/manpage-writer/docutils/__init__.py diff --git a/sandbox/manpage-writer/docutils/__init__.py b/sandbox/manpage-writer/docutils/__init__.py deleted file mode 100644 index 076841891..000000000 --- a/sandbox/manpage-writer/docutils/__init__.py +++ /dev/null @@ -1,20 +0,0 @@ -# docutils/__init__.py -# Python package for in-development docutils packages. - -import pkgutil - -# Ensure we can also reach modules in the system package -__path__ = pkgutil.extend_path(__path__, __name__) - -# Make this directory come last when importing from this package -__path__.reverse() - -# Make this package gain all the attributes of the system package -_path_prev = __path__ -import __init__ -globals().update(vars(__init__)) -__path__ = _path_prev -del _path_prev - -# Make this directory come first when importing from this package -__path__.reverse() -- 2.11.4.GIT