summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornoah <noah@656d521f-e311-0410-88e0-e7920216d269>2002-10-22 21:16:08 +0000
committernoah <noah@656d521f-e311-0410-88e0-e7920216d269>2002-10-22 21:16:08 +0000
commitd68c279f461afb580e24f2bdc6ecd148a8e324b3 (patch)
tree30b4cf3f1d9e07d1e3e3361eb66fd47dc90991f5
parent657b91dcfa73f7e3c61672230150eb799d347a46 (diff)
downloadpexpect-d68c279f461afb580e24f2bdc6ecd148a8e324b3.tar.gz
Added some version information into the module.
git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@115 656d521f-e311-0410-88e0-e7920216d269
-rw-r--r--pexpect/pexpect.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/pexpect/pexpect.py b/pexpect/pexpect.py
index a5440f4..032e70d 100644
--- a/pexpect/pexpect.py
+++ b/pexpect/pexpect.py
@@ -39,6 +39,11 @@ except ImportError, e:
A critical module was not found. Probably this OS does not support it.
Currently pexpect is intended for UNIX operating systems (including OS-X)."""
+__version__ = '0.94'
+__revision__ = '$Revision$'
+__all__ = ['ExceptionPexpect', 'EOF', 'TIMEOUT', 'spawn',
+ '__version__', '__revision__']
+
# Exception classes used by this module.
class ExceptionPexpect(Exception):
"""Base class for all exceptions raised by this module."""