<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/pexpect.git/tests/test_log.py, branch interact-does-not-detect-eof</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>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>Don't use six for tests</title>
<updated>2013-09-23T18:29:08+00:00</updated>
<author>
<name>Thomas Kluyver</name>
<email>takowl@gmail.com</email>
</author>
<published>2013-09-23T18:29:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pexpect.git/commit/?id=ada77b55de931f774faad15812b9f6d9a996392a'/>
<id>ada77b55de931f774faad15812b9f6d9a996392a</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>smartly use .replace &amp; remove 'io' dep. for py2</title>
<updated>2013-09-22T21:56:58+00:00</updated>
<author>
<name>jquast</name>
<email>contact@jeffquast.com</email>
</author>
<published>2013-09-22T21:56:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pexpect.git/commit/?id=f8fd443988d4a5ccfe55538b3d75c92b26651a14'/>
<id>f8fd443988d4a5ccfe55538b3d75c92b26651a14</id>
<content type='text'>
here goes backwards compatibility testing for py2 versions -- though I have them all locally, trying for travis CI which would help identify problems going forward. I'm sure there is some six.PY3 things to work out yet, already noticed I need a from __future__ import for the 'with' contextmanager for python 2.5.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
here goes backwards compatibility testing for py2 versions -- though I have them all locally, trying for travis CI which would help identify problems going forward. I'm sure there is some six.PY3 things to work out yet, already noticed I need a from __future__ import for the 'with' contextmanager for python 2.5.
</pre>
</div>
</content>
</entry>
<entry>
<title>cat(1) may display ^D\x08\x08 when ^D is used.</title>
<updated>2013-09-22T13:17:39+00:00</updated>
<author>
<name>jquast</name>
<email>contact@jeffquast.com</email>
</author>
<published>2013-09-22T13:17:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pexpect.git/commit/?id=09c2dd7900b34712cea1607bcda5d8f98e67923c'/>
<id>09c2dd7900b34712cea1607bcda5d8f98e67923c</id>
<content type='text'>
This causes various tests, that depend on cat(1) to fail on Mac OSX 10.8.5. These changes ensure that if ^D\x08\x08 ('^D', followed by '\b\b') is found, it is removed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This causes various tests, that depend on cat(1) to fail on Mac OSX 10.8.5. These changes ensure that if ^D\x08\x08 ('^D', followed by '\b\b') is found, it is removed.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix logging tests for Python 3</title>
<updated>2013-09-21T01:20:40+00:00</updated>
<author>
<name>Thomas Kluyver</name>
<email>takowl@gmail.com</email>
</author>
<published>2013-09-21T01:20:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/pexpect.git/commit/?id=908a94b15db61ae42f7b9cc3406a9192b26c4ef9'/>
<id>908a94b15db61ae42f7b9cc3406a9192b26c4ef9</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>
