summaryrefslogtreecommitdiff
path: root/pexpect/__init__.py
diff options
context:
space:
mode:
authorThomas Kluyver <takowl@gmail.com>2013-10-02 15:59:45 -0700
committerThomas Kluyver <takowl@gmail.com>2013-10-02 15:59:45 -0700
commitf64079f942fce756b52c81210401afd175b05902 (patch)
tree0acd9b90141b3358f81a61cc1b0916cded933eb8 /pexpect/__init__.py
parentbec2d72308c7b0cec0f5ba1d186e480f4cf11974 (diff)
downloadpexpect-f64079f942fce756b52c81210401afd175b05902.tar.gz
Add spawnu and runu to __all__ list
Diffstat (limited to 'pexpect/__init__.py')
-rw-r--r--pexpect/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pexpect/__init__.py b/pexpect/__init__.py
index 0435d4b..dc07b6a 100644
--- a/pexpect/__init__.py
+++ b/pexpect/__init__.py
@@ -88,8 +88,8 @@ support it. Pexpect is intended for UNIX-like operating systems.''')
__version__ = '3.0b1'
__revision__ = '1'
-__all__ = ['ExceptionPexpect', 'EOF', 'TIMEOUT', 'spawn', 'run', 'which',
- 'split_command_line', '__version__', '__revision__']
+__all__ = ['ExceptionPexpect', 'EOF', 'TIMEOUT', 'spawn', 'spawnu', 'run', 'runu',
+ 'which', 'split_command_line', '__version__', '__revision__']
PY3 = (sys.version_info[0] >= 3)