summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Version number -> 4.34.3Thomas Kluyver2017-11-092-3/+3
|
* Release notes for 4.3Thomas Kluyver2017-11-091-0/+25
|
* Merge pull request #452 from ↵Thomas Kluyver2017-11-091-4/+4
|\ | | | | | | | | orulz/issue_451_pxssh_broken_with_password_in_banner Issue #451: Check for "password:" as prompt instead of "password"
| * Issue #451: Check for "password:" as password prompt instead of "password"oevans2017-10-251-4/+4
|/
* Merge pull request #450 from tacaswell/fix_37_compatThomas Kluyver2017-10-213-3/+4
|\ | | | | Fix 37 compat
| * TST: add nightly to test suiteThomas A Caswell2017-10-211-0/+1
| |
| * FIX: rename async.py -> _async.py to avoid syntax errors in 3.7Thomas A Caswell2017-10-212-3/+3
|/ | | | | async has moved to a proper keyword resulting in syntax errors on import.
* Merge pull request #449 from sobolevn/patch-1Thomas Kluyver2017-10-161-1/+1
|\ | | | | Updates README.rst with svg badge
| * Updates README.rst with svg badgeNikita Sobolev2017-10-141-1/+1
|/
* Merge pull request #447 from rob356/win32-stringsThomas Kluyver2017-09-281-1/+1
|\ | | | | Don't split cmd strings on win32 in PopenSpawn
| * Don't split cmd strings on win32Robert Holt2017-09-271-1/+1
|/ | | | | On win32 Popen uses strings for args, so don't convert cmd to a list if running on win32. See: https://docs.python.org/3/library/subprocess.html#converting-argument-sequence
* Merge pull request #445 from scop/36escThomas Kluyver2017-09-178-24/+24
|\ | | | | Python 3.6 invalid escape sequence deprecation fixes
| * Python 3.6 invalid escape sequence deprecation fixesVille Skyttä2017-09-178-24/+24
|/ | | | https://docs.python.org/3/whatsnew/3.6.html#deprecated-python-behavior
* Merge pull request #446 from eli-b/patch-1Thomas Kluyver2017-09-161-1/+1
|\ | | | | Fix popen_spawn when specifying a path on Windows which contains "\" …
| * Use os.name instead of sys.platformEli Boyarski2017-09-161-1/+1
| |
| * Fix popen_spawn when specifying a path on Windows which contains "\" separatorsEli Boyarski2017-09-161-1/+1
| |
* | Merge pull request #444 from scop/travisThomas Kluyver2017-09-161-0/+1
|\ \ | | | | | | Travis: add 3.6
| * | Travis: add 3.6Ville Skyttä2017-09-151-0/+1
| |/
* | Merge pull request #443 from scop/spellingThomas Kluyver2017-09-169-16/+16
|\ \ | |/ |/| Spelling fixes
| * Spelling fixesVille Skyttä2017-09-159-16/+16
|/
* Merge branch 'master' of github.com:pexpect/pexpectThomas Kluyver2017-08-225-27/+48
|\
| * Merge pull request #386 from kristopher-h/masterThomas Kluyver2017-08-221-1/+4
| |\ | | | | | | Raise ExceptionPexpect instead of PtyProcessError in spawn.close
| | * Raise ExceptionPexpect instead of PtyProcessError in spawn.closeKristopher H2016-10-191-1/+4
| | |
| * | Merge pull request #431 from takluyver/i315Thomas Kluyver2017-08-222-25/+37
| |\ \ | | | | | | | | Rename async= parameter to async_=
| | * | Rename async= parameter to async_=Thomas Kluyver2017-07-192-25/+37
| | | | | | | | | | | | | | | | Closes gh-315
| * | | Merge pull request #434 from takluyver/i433Thomas Kluyver2017-08-222-1/+7
| |\ \ \ | | |/ / | |/| | Only pass strings to shlex
| | * | Only pass strings to shlexThomas Kluyver2017-07-252-1/+7
| |/ / | | | | | | | | | | | | | | | Avoid passing None, which causes it to read from stdin. Closes gh-433
* | | Ignore failures on PyPy on TravisThomas Kluyver2017-08-221-0/+5
| | |
* | | Remove superfluous importsThomas Kluyver2017-08-221-1/+0
| | | | | | | | | | | | Closes gh-424
* | | Add some more explanation about pexpect on WindowsThomas Kluyver2017-08-221-2/+12
|/ /
* | Merge pull request #430 from nresare/patch-1Thomas Kluyver2017-07-181-3/+3
|\ \ | | | | | | Use raw strings for strings with literal backslash
| * | Use raw strings for strings with literal backslashNoa Resare2017-07-171-3/+3
|/ / | | | | In python 3.6 it raises a DeprecationWarning to have strings with invalid backslash escape sequences. Changing the strings to raw strings (that doesn't try to look for escape sequences) makes the intention clearer and shuts up the DeprecationWarning
* | Merge pull request #417 from TheNuclearCat/masterThomas Kluyver2017-05-261-0/+1
|\ \ | | | | | | added missing assignment of pid var to PopenSpawn class
| * | added missing assignment of pid var to PopenSpawn classMarc Maurer2017-05-251-0/+1
|/ /
* | Merge pull request #376 from gescheit/masterThomas Kluyver2017-02-073-6/+29
|\ \ | | | | | | dont remove reference to _UnixReadPipeTransport
| * | dont remove reference to _UnixReadPipeTransportAleksandr Balezin2016-09-073-6/+29
| |/ | | | | | | | | _UnixReadPipeTransport class closes pipe in __del__ method. This commit adds attribute to SpawnBase with pointer to current transport.
* | Merge pull request #389 from lazymutt/masterThomas Kluyver2016-12-211-4/+1
|\ \ | | | | | | Remove reference to missing script
| * | Remove reference to missing scriptTodd McDaniel2016-10-301-4/+1
| |/ | | | | | | Remove reference to missing sshls.py script in examples
* | Reword info about encoding in exampleThomas Kluyver2016-12-061-2/+2
| |
* | Merge pull request #395 from AngusP/patch-1Thomas Kluyver2016-12-061-2/+3
|\ \ | | | | | | (minor) Remove spawnu in spawn docstring in favour of spawn with encoding arg
| * | Update docstring for class spawn.__init__ in pty_spawn.py to remove ↵Angus Pearson2016-12-041-2/+3
| | | | | | | | | | | | | | | reference to deprecated spawnu in favour of spawn with ``encoding`` keyword argument ``spawnu`` deprecated according to line 805 of `pty_spawn.py` and issue #159
* | | Catch error showing terminal info on TravisThomas Kluyver2016-12-041-3/+6
|/ /
* | Merge pull request #392 from zkendall/patch-1Thomas Kluyver2016-12-021-1/+1
|\ \ | |/ |/| Update README.rst
| * Update README.rstZachariah Kendall2016-12-011-1/+1
|/
* Prepare to release 4.2.14.2.1Thomas Kluyver2016-08-213-2/+9
|
* Merge pull request #354 from persandstrom/masterThomas Kluyver2016-08-213-2/+19
|\ | | | | Raise proper exception when connection cannot be established
| * add testPer Sandström2016-06-142-1/+15
| |
| * Raise proper exception when connection cannot be establishedPer Sandström2016-06-121-1/+4
| |
* | Merge pull request #335 from joelcollinsdc/passmass-example-fixesThomas Kluyver2016-08-201-1/+1
|\ \ | | | | | | change passmass example to not log writes
| * | change passmass example to not log writesJoel Collins2016-03-031-1/+1
| | |