summaryrefslogtreecommitdiffstats
path: root/pym/portage_exec.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-04-28 00:04:31 -0700
committerZac Medico <zmedico@gentoo.org>2010-04-28 00:04:31 -0700
commit2b6ddb35bc13df23b0af198dc737909892f110bd (patch)
tree6a9fbcb8ddd30f844b59fc373749ee59c4c32a22 /pym/portage_exec.py
parentaab8d3dca843e07866755fc821b9bc9d5004bde5 (diff)
downloadportage-2b6ddb35bc13df23b0af198dc737909892f110bd.tar.gz
portage-2b6ddb35bc13df23b0af198dc737909892f110bd.tar.bz2
portage-2b6ddb35bc13df23b0af198dc737909892f110bd.zip
Remove old portage module namespace compatibility that's been deprecated
since portage-2.1.6.
Diffstat (limited to 'pym/portage_exec.py')
-rw-r--r--pym/portage_exec.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/pym/portage_exec.py b/pym/portage_exec.py
deleted file mode 100644
index 669a92cce..000000000
--- a/pym/portage_exec.py
+++ /dev/null
@@ -1,14 +0,0 @@
-# portage_compat_namespace.py -- provide compability layer with new namespace
-# Copyright 2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-"""
-Special edition of portage_compat_namespace.py as for this module we can't translate
-name automatically as "import portage.exec" is a SyntaxError.
-"""
-
-import sys, warnings
-
-import portage.process
-warnings.warn("DEPRECATION NOTICE: The portage_exec module was replaced by portage.process")
-sys.modules["portage_exec"] = portage.process