<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/pexpect.git/pexpect/replwrap.py, branch use-flit</title>
<subtitle>github.com: pexpect/pexpect.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pexpect.git/'/>
<entry>
<title>Don't use deprecated spawnu in replwrap tests</title>
<updated>2015-10-04T08:47:10+00:00</updated>
<author>
<name>Thomas Kluyver</name>
<email>takowl@gmail.com</email>
</author>
<published>2015-10-04T08:47:10+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pexpect.git/commit/?id=8510cfaa238b21feecf3bd19e7a5b49b4d38b50d'/>
<id>8510cfaa238b21feecf3bd19e7a5b49b4d38b50d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Collect output as list instead of string</title>
<updated>2015-10-04T08:34:07+00:00</updated>
<author>
<name>Thomas Kluyver</name>
<email>takowl@gmail.com</email>
</author>
<published>2015-10-04T08:30:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pexpect.git/commit/?id=d71e4835f421ba61b147d1f7b0d7de3d81c46b5a'/>
<id>d71e4835f421ba61b147d1f7b0d7de3d81c46b5a</id>
<content type='text'>
This is supposed to be more efficient
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is supposed to be more efficient
</pre>
</div>
</content>
</entry>
<entry>
<title>Use u-prefix for strings instead of u() function</title>
<updated>2015-10-04T08:34:07+00:00</updated>
<author>
<name>Thomas Kluyver</name>
<email>takowl@gmail.com</email>
</author>
<published>2015-10-04T08:28:28+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pexpect.git/commit/?id=b3b4f625fbe294d40f86726a2c97168b7a27d04c'/>
<id>b3b4f625fbe294d40f86726a2c97168b7a27d04c</id>
<content type='text'>
We're not supporting Python 3.2.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We're not supporting Python 3.2.
</pre>
</div>
</content>
</entry>
<entry>
<title>This resolves two issues with replwrap,</title>
<updated>2015-10-04T08:21:02+00:00</updated>
<author>
<name>jquast</name>
<email>contact@jeffquast.com</email>
</author>
<published>2014-06-29T04:37:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pexpect.git/commit/?id=1ba286fc604ad6665d7cc3edbb2db3bff54b7a82'/>
<id>1ba286fc604ad6665d7cc3edbb2db3bff54b7a82</id>
<content type='text'>
* for multiple commands, such as in
  ``'\n'.join((cmd, cmd2))``, cmd2 and beyond
  previously used a ``timeout`` of 1, instead of
  the specified or default ``timeout``.
* furthermore, the output of multi-command output
  was discarded, only the last-most command output
  was received.  Resolved by joining the result of
  ``self.child.before``.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* for multiple commands, such as in
  ``'\n'.join((cmd, cmd2))``, cmd2 and beyond
  previously used a ``timeout`` of 1, instead of
  the specified or default ``timeout``.
* furthermore, the output of multi-command output
  was discarded, only the last-most command output
  was received.  Resolved by joining the result of
  ``self.child.before``.
</pre>
</div>
</content>
</entry>
<entry>
<title>accept unicode cmd on Python 2</title>
<updated>2015-06-16T19:08:28+00:00</updated>
<author>
<name>Min RK</name>
<email>benjaminrk@gmail.com</email>
</author>
<published>2015-06-16T19:08:28+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pexpect.git/commit/?id=aa580c4d8e0b2070a389dbcb5b1bbe108827c068'/>
<id>aa580c4d8e0b2070a389dbcb5b1bbe108827c068</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bugfix for solaris in replwrap.bash()</title>
<updated>2014-11-23T11:57:47+00:00</updated>
<author>
<name>Jeff Quast</name>
<email>contact@jeffquast.com</email>
</author>
<published>2014-11-23T11:53:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pexpect.git/commit/?id=ec6f0562c447d1c25657fe4b8f0da75aceb2a14b'/>
<id>ec6f0562c447d1c25657fe4b8f0da75aceb2a14b</id>
<content type='text'>
Forgot to set ``echo=False`` when calling spawnu()
directly in replwrap.bash(), resulting in IOError
on SunOs:

    IOError: [Errno 22] Invalid argument: setecho() may not be called on this platform.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Forgot to set ``echo=False`` when calling spawnu()
directly in replwrap.bash(), resulting in IOError
on SunOs:

    IOError: [Errno 22] Invalid argument: setecho() may not be called on this platform.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make replwrap.bash() robust against custom prompts in bashrc</title>
<updated>2014-09-21T19:34:34+00:00</updated>
<author>
<name>Thomas Kluyver</name>
<email>takowl@gmail.com</email>
</author>
<published>2014-09-21T19:34:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pexpect.git/commit/?id=35a920e0f933929c6d37fffbb448212c27b92480'/>
<id>35a920e0f933929c6d37fffbb448212c27b92480</id>
<content type='text'>
By providing our own bashrc which overrides PS1, we can have a
consistent prompt without breaking other customisations of bash that
people may want to keep, such as aliases defined in bashrc.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
By providing our own bashrc which overrides PS1, we can have a
consistent prompt without breaking other customisations of bash that
people may want to keep, such as aliases defined in bashrc.
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow replwrap to reset pager so bash doesn't get stuck displaying things</title>
<updated>2014-06-27T00:40:57+00:00</updated>
<author>
<name>Thomas Kluyver</name>
<email>takowl@gmail.com</email>
</author>
<published>2014-06-27T00:40:57+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pexpect.git/commit/?id=939718cca3e2be4cb48e348fac77f09aeb049c5c'/>
<id>939718cca3e2be4cb48e348fac77f09aeb049c5c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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://91.123.203.49/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>Fixing various prompt issues with bash ReplWrapper</title>
<updated>2014-06-08T03:54:18+00:00</updated>
<author>
<name>jquast</name>
<email>contact@jeffquast.com</email>
</author>
<published>2014-06-08T03:54:18+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pexpect.git/commit/?id=6a144134788a0c6601262ec008b83e4288bbb096'/>
<id>6a144134788a0c6601262ec008b83e4288bbb096</id>
<content type='text'>
allow matching a regular expression,
use setUp and tearDown to putenv &amp; getenv PS1, PS2
unset PROMPT_COMMAND
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
allow matching a regular expression,
use setUp and tearDown to putenv &amp; getenv PS1, PS2
unset PROMPT_COMMAND
</pre>
</div>
</content>
</entry>
</feed>
