summaryrefslogtreecommitdiff
path: root/pexpect/__init__.py
diff options
context:
space:
mode:
authorCooper Ry Lees <me@cooperlees.com>2018-03-23 19:42:30 +0000
committerCooper Ry Lees <me@cooperlees.com>2018-03-23 19:42:30 +0000
commit6db8d9b8e91a49c75bf67a95f245733d357770a8 (patch)
tree8061e74fd1d08696cf428db13b5da22cb974e315 /pexpect/__init__.py
parentb9e793a5e0de36d304a39339a8d3c900f4755157 (diff)
downloadpexpect-git-6db8d9b8e91a49c75bf67a95f245733d357770a8.tar.gz
Allow for configurable select.poll() usage
- This allows systems that can have > 1024 fds to work - Should be marginally faster - Added tests to use select.poll() - Incremented version - Happy to change this, guessed what it should be
Diffstat (limited to 'pexpect/__init__.py')
-rw-r--r--pexpect/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pexpect/__init__.py b/pexpect/__init__.py
index 458d3ad..83462a4 100644
--- a/pexpect/__init__.py
+++ b/pexpect/__init__.py
@@ -75,7 +75,7 @@ if sys.platform != 'win32':
from .pty_spawn import spawn, spawnu
from .run import run, runu
-__version__ = '4.4.0'
+__version__ = '4.5.0'
__revision__ = ''
__all__ = ['ExceptionPexpect', 'EOF', 'TIMEOUT', 'spawn', 'spawnu', 'run', 'runu',
'which', 'split_command_line', '__version__', '__revision__']