summaryrefslogtreecommitdiff
path: root/pexpect/popen_spawn.py
Commit message (Collapse)AuthorAgeFilesLines
* Update docs for PopenSpawn and Windows supportThomas Kluyver2015-10-031-1/+14
|
* Ensured buffered data is processed before raising EOFThomas Kluyver2015-09-291-14/+19
|
* No sleep in pipe reader loopThomas Kluyver2015-09-161-1/+0
|
* Fix return value of send() on Python 2Thomas Kluyver2015-09-121-4/+8
|
* Update unicode interface for PopenSpawnThomas Kluyver2015-09-121-11/+8
|
* Fix popen spawn and tests on windowsSteven Silvester2015-09-121-6/+2
| | | | | | Cleanup Always close stdin
* Add a sendeof method and testsSteven Silvester2015-09-121-2/+8
|
* Enhanced popen_spawn and added testsSteven Silvester2015-09-121-22/+80
| | | | | | | | | - Use just newline character for end of line - Use shlex to split cmd args - Improved non-blocking read to act more like ptyspawn - Fix send method and add sendline - Add kill method - Add several tests
* Restrict arguments that can be passed on to PopenThomas Kluyver2015-09-121-4/+4
|
* Some improvementsThomas Kluyver2015-09-121-2/+20
|
* Start implementing a Pexpect spawn class based on PopenSteven Silvester2015-09-121-0/+83
Initial implementation copied from https://gist.github.com/blink1073/9a0ea82efc84cb9216d0