<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/pexpect.git/tests/test_isalive.py, branch read_more_bytes</title>
<subtitle>github.com: pexpect/pexpect.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pexpect.git/'/>
<entry>
<title>Tests cases and documentation to supplement wait()</title>
<updated>2015-04-26T20:35:49+00:00</updated>
<author>
<name>Jeff Quast</name>
<email>contact@jeffquast.com</email>
</author>
<published>2015-04-26T20:35:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pexpect.git/commit/?id=1ac9cb6cf63687c30e4304b134f88d0cefc5a37f'/>
<id>1ac9cb6cf63687c30e4304b134f88d0cefc5a37f</id>
<content type='text'>
This matches the same branch of ptyprocess,
noexception-on-wait-after-terminate, which allows
calling the wait() method multiple times without
raising an exception.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This matches the same branch of ptyprocess,
noexception-on-wait-after-terminate, which allows
calling the wait() method multiple times without
raising an exception.
</pre>
</div>
</content>
</entry>
<entry>
<title>Solaris support, tested on SmartOS from cron(1).</title>
<updated>2014-06-08T08:07:03+00:00</updated>
<author>
<name>Jeff Quast</name>
<email>contact@jeffquast.com</email>
</author>
<published>2014-06-08T08:07:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pexpect.git/commit/?id=abe09d65daa99aab33b08a00f2c183b67e7f9ad3'/>
<id>abe09d65daa99aab33b08a00f2c183b67e7f9ad3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix imports in tests for Python 3</title>
<updated>2014-06-02T03:40:07+00:00</updated>
<author>
<name>Thomas Kluyver</name>
<email>takowl@gmail.com</email>
</author>
<published>2014-06-02T00:51:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pexpect.git/commit/?id=8d0e5684a479b93811f8433e672a041f4e0f25d2'/>
<id>8d0e5684a479b93811f8433e672a041f4e0f25d2</id>
<content type='text'>
Closes gh-59
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes gh-59
</pre>
</div>
</content>
</entry>
<entry>
<title>remove all unnecessary imports</title>
<updated>2014-06-02T00:56:30+00:00</updated>
<author>
<name>jquast</name>
<email>contact@jeffquast.com</email>
</author>
<published>2014-06-02T00:56:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pexpect.git/commit/?id=8cfc5188e0a9cff7a584c83e7ee16ef7023b3cd5'/>
<id>8cfc5188e0a9cff7a584c83e7ee16ef7023b3cd5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Test forcing termination (SIGKILL)</title>
<updated>2013-10-21T19:50:11+00:00</updated>
<author>
<name>Thomas Kluyver</name>
<email>takowl@gmail.com</email>
</author>
<published>2013-10-21T19:50:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pexpect.git/commit/?id=8ed644d85fcfa18cc034e884f547696116e54771'/>
<id>8ed644d85fcfa18cc034e884f547696116e54771</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add test for wait() on process terminated by signal</title>
<updated>2013-10-21T19:08:36+00:00</updated>
<author>
<name>Thomas Kluyver</name>
<email>takowl@gmail.com</email>
</author>
<published>2013-10-21T19:08:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pexpect.git/commit/?id=c71562035250942080601a2254c84a12bccb0b46'/>
<id>c71562035250942080601a2254c84a12bccb0b46</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>py2.5 compatibilities w/six.py</title>
<updated>2013-09-23T02:32:33+00:00</updated>
<author>
<name>jquast</name>
<email>contact@jeffquast.com</email>
</author>
<published>2013-09-23T02:32:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pexpect.git/commit/?id=c851a110a61f20c2163aacdf6afe210d572d777b'/>
<id>c851a110a61f20c2163aacdf6afe210d572d777b</id>
<content type='text'>
-except Exception as e:
+except Exception, err:

the unfortunate use of six.b('') instead of b''
print(arg0, arg1) =&gt; six.print_(arg0, arg1)

some autopep8 -i is definitely called for, some of these test cases are darn unreadable, but did partially pep8 some of the really-long-over-80col-lines.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
-except Exception as e:
+except Exception, err:

the unfortunate use of six.b('') instead of b''
print(arg0, arg1) =&gt; six.print_(arg0, arg1)

some autopep8 -i is definitely called for, some of these test cases are darn unreadable, but did partially pep8 some of the really-long-over-80col-lines.
</pre>
</div>
</content>
</entry>
<entry>
<title>more py25 compatibility</title>
<updated>2013-09-22T23:30:28+00:00</updated>
<author>
<name>jquast</name>
<email>contact@jeffquast.com</email>
</author>
<published>2013-09-22T23:30:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pexpect.git/commit/?id=36d6f3b8026eccfce8ae541a659b44dcfa553c87'/>
<id>36d6f3b8026eccfce8ae541a659b44dcfa553c87</id>
<content type='text'>
not even sure if pexpect can get as far back as python2.5, but its worth a shot.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
not even sure if pexpect can get as far back as python2.5, but its worth a shot.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use new style except statements in tests</title>
<updated>2013-09-17T22:52:47+00:00</updated>
<author>
<name>Thomas Kluyver</name>
<email>takowl@gmail.com</email>
</author>
<published>2013-09-17T22:52:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pexpect.git/commit/?id=5cdccd73558298331d580792f48986b24b8bc3c9'/>
<id>5cdccd73558298331d580792f48986b24b8bc3c9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Moved everything up one directory level.</title>
<updated>2012-10-26T18:19:10+00:00</updated>
<author>
<name>Noah Spurrier</name>
<email>noah@squaretrade.com</email>
</author>
<published>2012-10-26T18:19:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pexpect.git/commit/?id=7999ca657997e78febfb3fb89cfcc066d50bf788'/>
<id>7999ca657997e78febfb3fb89cfcc066d50bf788</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
