summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Mostly a massive license update. Added a license per file.HEADmasternoah2012-10-2066-179/+1318
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@533 656d521f-e311-0410-88e0-e7920216d269
* A few improvements to output.noah2012-09-201-29/+29
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@532 656d521f-e311-0410-88e0-e7920216d269
* Added tests for dead hosts.noah2012-09-181-9/+11
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@531 656d521f-e311-0410-88e0-e7920216d269
* Cleaned up 'which' function.noah2012-09-131-41/+34
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@530 656d521f-e311-0410-88e0-e7920216d269
* Finished PEP8 modifications.noah2012-08-231-7/+8
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@529 656d521f-e311-0410-88e0-e7920216d269
* Syntax error fix. Forgot to run the test suite.noah2012-08-231-2/+2
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@528 656d521f-e311-0410-88e0-e7920216d269
* Updated for PEP8.noah2012-08-231-275/+376
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@527 656d521f-e311-0410-88e0-e7920216d269
* Clarified a comment.noah2012-08-201-1/+2
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@526 656d521f-e311-0410-88e0-e7920216d269
* Added most of the patches from Wil Mahan (SourceForge:wmahan).noah2010-10-311-5/+3
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@525 656d521f-e311-0410-88e0-e7920216d269
* Fixed test. I know, you're not supposed to fix your test cases, but this onenoah2010-10-311-1/+1
| | | | | | | | was really broken. It was expecting the wrong result. The SVN commit for r522 fixed ANSI.py, but the test was still expecting the wrong result. git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@524 656d521f-e311-0410-88e0-e7920216d269
* Added Lars Nordin patch.noah2010-10-171-1/+10
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@523 656d521f-e311-0410-88e0-e7920216d269
* Updated ANSI.py to support multiple integer arguments in cursor color escape ↵noah2010-07-201-11/+19
| | | | | | sequence. git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@522 656d521f-e311-0410-88e0-e7920216d269
* Added a fix to ANSI.py by Shane Kerr.noah2010-07-116-78/+121
| | | | | | | | | Also found a bug in support for Unicode. I was not able to fix it at the time. Unicode is still a pain in the ass. git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@521 656d521f-e311-0410-88e0-e7920216d269
* Minor changes.noah2009-02-013-7/+7
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@520 656d521f-e311-0410-88e0-e7920216d269
* Just some comment updates.noah2008-12-061-4/+10
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@519 656d521f-e311-0410-88e0-e7920216d269
* This is a waste of space...noah2008-10-021-7542/+0
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@518 656d521f-e311-0410-88e0-e7920216d269
* This is looking a little old now.noah2008-08-181-1/+2
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@517 656d521f-e311-0410-88e0-e7920216d269
* It turns out someone was getting another exception besides AttributeError.noah2008-05-231-5/+5
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@516 656d521f-e311-0410-88e0-e7920216d269
* Following up on all the bug reports on SourceForge.net.noah2008-03-221-1/+1
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@515 656d521f-e311-0410-88e0-e7920216d269
* Patch from Jan Grant for solaris cron.noah2008-03-191-5/+9
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@514 656d521f-e311-0410-88e0-e7920216d269
* I changed the name of a method. It was driving me nuts.noah2008-02-091-2/+2
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@513 656d521f-e311-0410-88e0-e7920216d269
* Added patch by John Spiegel john at jspiegel.net.noah2008-02-092-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | > It seems the sync_original_prompt() function in pxssh expects to flush the > input with a read_nonblocking(), but when there's nothing to read, > read_nonblocking() throws, preventing me from logging in. This fixed it for > me: > > Only in pexpect-2.3.new/: build > diff -r pexpect-2.3/pxssh.py pexpect-2.3.new/pxssh.py > 134c134,137 > < self.read_nonblocking(size=10000,timeout=1) # GAS: Clear out the cache before getting the prompt > --- > > try: > > self.read_nonblocking(size=10000,timeout=1) # GAS: Clear out the cache before getting the prompt > > except TIMEOUT: > > pass > > Hope that's helpful, > John > git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@512 656d521f-e311-0410-88e0-e7920216d269
* This seemed more universal. Most systems have lamemp3noah2008-01-191-6/+14
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@511 656d521f-e311-0410-88e0-e7920216d269
* Getting ready for the next version 2.4 release.noah2008-01-052-3/+3
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@510 656d521f-e311-0410-88e0-e7920216d269
* Added :refresh command. This is similar to :resync.noah2008-01-051-1/+38
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@509 656d521f-e311-0410-88e0-e7920216d269
* Made assert messages more informative.noah2007-12-291-5/+10
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@508 656d521f-e311-0410-88e0-e7920216d269
* Added documentation for logfiles.noah2007-12-273-8/+34
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@507 656d521f-e311-0410-88e0-e7920216d269
* This is looking better.noah2007-12-271-98/+133
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@506 656d521f-e311-0410-88e0-e7920216d269
* I had to make a few tweaks to fix some broken tests. All tests pass at 82% ↵noah2007-12-264-7/+11
| | | | | | code coverage. git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@505 656d521f-e311-0410-88e0-e7920216d269
* cleaned up fdpexpect a bit.noah2007-12-222-14/+23
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@504 656d521f-e311-0410-88e0-e7920216d269
* Mang... this is hard. And now two tests are failing. Super terrific...noah2007-12-213-9/+53
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@503 656d521f-e311-0410-88e0-e7920216d269
* Trying to add coverage for interact() methods.noah2007-12-2018-75/+310
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@502 656d521f-e311-0410-88e0-e7920216d269
* Adding waitnoecho and test functions.noah2007-12-194-4/+72
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@501 656d521f-e311-0410-88e0-e7920216d269
* My precious...noah2007-12-171-0/+0
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@500 656d521f-e311-0410-88e0-e7920216d269
* Updated license date.noah2007-12-174-5/+5
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@499 656d521f-e311-0410-88e0-e7920216d269
* Fixed websync. cleaned up examples.noah2007-12-1716-86/+143
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@498 656d521f-e311-0410-88e0-e7920216d269
* Fixed VERSION in template. Fixed corrupt PNG.noah2007-12-172-1/+1
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@497 656d521f-e311-0410-88e0-e7920216d269
* Cleaning docs.noah2007-12-172-1/+1
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@496 656d521f-e311-0410-88e0-e7920216d269
* Got rid of clutter. These patches have been applied.noah2007-12-162-359/+0
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@495 656d521f-e311-0410-88e0-e7920216d269
* Second patch by Jorgen Grahn.noah2007-12-162-6/+76
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@494 656d521f-e311-0410-88e0-e7920216d269
* Added Jorgen's pexpect-487-expect-order.patchnoah2007-12-162-5/+126
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@493 656d521f-e311-0410-88e0-e7920216d269
* Some peatches as suggestions I should add.noah2007-12-163-0/+388
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@492 656d521f-e311-0410-88e0-e7920216d269
* passed all tests.noah2007-12-161-36/+36
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@491 656d521f-e311-0410-88e0-e7920216d269
* Added a few new features. Cleaned up code.noah2007-12-071-124/+169
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@490 656d521f-e311-0410-88e0-e7920216d269
* Updated examples with a cleaner script style and doc strings.noah2007-11-285-24/+59
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@489 656d521f-e311-0410-88e0-e7920216d269
* Made this Munin compatible.noah2007-11-281-57/+178
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@488 656d521f-e311-0410-88e0-e7920216d269
* Small doc change.noah2007-08-291-9/+9
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@487 656d521f-e311-0410-88e0-e7920216d269
* Added test for ANSI screen torture test.noah2007-07-132-3/+54
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@486 656d521f-e311-0410-88e0-e7920216d269
* Typo.noah2007-07-121-1/+1
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@485 656d521f-e311-0410-88e0-e7920216d269
* Added ANSI and screen and FSM to distribution.noah2007-07-121-1/+1
| | | | git-svn-id: http://pexpect.svn.sourceforge.net/svnroot/pexpect/trunk@484 656d521f-e311-0410-88e0-e7920216d269