summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Quast <contact@jeffquast.com>2014-06-24 21:51:39 +0000
committerJeff Quast <contact@jeffquast.com>2014-06-24 21:51:39 +0000
commit98838e7d8253a9c24751549c69a4f7d4ddffeb09 (patch)
tree61e8ea1cac09233a2ebd41862a9b06a1f5c38236
parent995f9daf88387523129577048a6ada3de5fecfa1 (diff)
parent1ef9088c3e16a2048751b9ea83a551f4fc8bf2d8 (diff)
downloadpexpect-git-98838e7d8253a9c24751549c69a4f7d4ddffeb09.tar.gz
Merge branch 'issue-44-solaris-try-3' of github.com:pexpect/pexpect into issue-44-solaris-try-3
-rw-r--r--DEVELOPERS.rst2
-rw-r--r--pexpect/__init__.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/DEVELOPERS.rst b/DEVELOPERS.rst
index d5e4475..bf2bb9f 100644
--- a/DEVELOPERS.rst
+++ b/DEVELOPERS.rst
@@ -1,6 +1,6 @@
To run the tests, use `py.test <http://pytest.org/latest/>`_::
- py.test
+ py.test tests
The tests are all located in the tests/ directory. To add a new unit
test all you have to do is create the file in the tests/ directory with a
diff --git a/pexpect/__init__.py b/pexpect/__init__.py
index 468c4c2..30c6764 100644
--- a/pexpect/__init__.py
+++ b/pexpect/__init__.py
@@ -727,7 +727,7 @@ class spawn(object):
try:
fd = os.open("/dev/tty", os.O_RDWR | os.O_NOCTTY)
os.close(fd)
- except OSError, err:
+ except OSError as err:
if err.errno != errno.ENXIO:
raise
@@ -739,7 +739,7 @@ class spawn(object):
fd = os.open("/dev/tty", os.O_RDWR | os.O_NOCTTY)
os.close(fd)
raise ExceptionPexpect("OSError of errno.ENXIO should be raised.")
- except OSError, err:
+ except OSError as err:
if err.errno != errno.ENXIO:
raise