summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Kluyver <takowl@gmail.com>2015-09-12 11:20:12 +0100
committerThomas Kluyver <takowl@gmail.com>2015-09-12 11:20:12 +0100
commiteee85ecfeda167dd07e3abeaffcf8c51a6b0d5a8 (patch)
tree87c73d50b2ac51d422a15d47bcb09378d8a168a4
parent617ec75f361bf6ffd61baca7d84ad581541c9733 (diff)
parent57adf6f08bc208e71f3867586e255c3e9a749358 (diff)
downloadpexpect-git-eee85ecfeda167dd07e3abeaffcf8c51a6b0d5a8.tar.gz
Merge pull request #237 from takluyver/rm-toplevel-modules
Remove separate top-level modules
-rw-r--r--ANSI.py7
-rw-r--r--FSM.py7
-rw-r--r--fdpexpect.py7
-rw-r--r--pxssh.py7
-rw-r--r--screen.py7
-rw-r--r--setup.py1
6 files changed, 0 insertions, 36 deletions
diff --git a/ANSI.py b/ANSI.py
deleted file mode 100644
index ca1673b..0000000
--- a/ANSI.py
+++ /dev/null
@@ -1,7 +0,0 @@
-import warnings
-
-warnings.warn("This module has been moved to pexpect.ANSI, please update imports.",
- ImportWarning)
-del warnings
-
-from pexpect.ANSI import * # analysis:ignore \ No newline at end of file
diff --git a/FSM.py b/FSM.py
deleted file mode 100644
index 4e1ab49..0000000
--- a/FSM.py
+++ /dev/null
@@ -1,7 +0,0 @@
-import warnings
-
-warnings.warn("This module has been moved to pexpect.FSM, please update imports.",
- ImportWarning)
-del warnings
-
-from pexpect.FSM import * # analysis:ignore \ No newline at end of file
diff --git a/fdpexpect.py b/fdpexpect.py
deleted file mode 100644
index 26db4c1..0000000
--- a/fdpexpect.py
+++ /dev/null
@@ -1,7 +0,0 @@
-import warnings
-
-warnings.warn("This module has been moved to pexpect.fdpexpect, please update imports.",
- ImportWarning)
-del warnings
-
-from pexpect.fdpexpect import * # analysis:ignore \ No newline at end of file
diff --git a/pxssh.py b/pxssh.py
deleted file mode 100644
index 1849769..0000000
--- a/pxssh.py
+++ /dev/null
@@ -1,7 +0,0 @@
-import warnings
-
-warnings.warn("This module has been moved to pexpect.pxssh, please update imports.",
- ImportWarning)
-del warnings
-
-from pexpect.pxssh import * # analysis:ignore \ No newline at end of file
diff --git a/screen.py b/screen.py
deleted file mode 100644
index 0358c41..0000000
--- a/screen.py
+++ /dev/null
@@ -1,7 +0,0 @@
-import warnings
-
-warnings.warn("This module has been moved to pexpect.screen, please update imports.",
- ImportWarning)
-del warnings
-
-from pexpect.screen import * # analysis:ignore \ No newline at end of file
diff --git a/setup.py b/setup.py
index feb5e64..ed0740e 100644
--- a/setup.py
+++ b/setup.py
@@ -29,7 +29,6 @@ The Pexpect interface was designed to be easy to use.
setup (name='pexpect',
version=version,
- py_modules=['pxssh', 'fdpexpect', 'FSM', 'screen', 'ANSI'],
packages=['pexpect'],
description='Pexpect allows easy control of interactive console applications.',
long_description=long_description,