| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Remove use of six in pexpect | Thomas Kluyver | 2013-09-23 | 1 | -18/+15 |
| | | |||||
| * | remove UnicodeEncodeError in __str__() for unicode | jquast | 2013-09-23 | 1 | -6/+6 |
| | | |||||
| * | fix:str() before %r still UnicodeEncodeError | jquast | 2013-09-23 | 1 | -2/+2 |
| | | |||||
| * | UnicodeEncodeError, not UnicodeDecodeError! | jquast | 2013-09-23 | 1 | -1/+1 |
| | | |||||
| * | only repr() on UnicodeDecodeError in __str__() | jquast | 2013-09-23 | 1 | -2/+11 |
| | | |||||
| * | absurd_match => None | jquast | 2013-09-23 | 1 | -8/+6 |
| | | | | | This may even have resolved some pattern matching index issues | ||||
| * | UnicodeEncodeError fix -- str => repr | jquast | 2013-09-23 | 1 | -1/+1 |
| | | | | | This is only used in error reporting | ||||
| * | unicode fix, exception fixes for py3 | jquast | 2013-09-22 | 1 | -18/+24 |
| | | |||||
| * | py2.5 compatibilities w/six.py | jquast | 2013-09-22 | 1 | -31/+39 |
| | | | | | | | | | | | | | | | | -except Exception as e: +except Exception, err: the unfortunate use of six.b('') instead of b'', many more coming in test cases. string_type => six.binary_type bytes => six.binary_type allowed_string_types now always a tuple: it helps the error message display better, improve TypeError in expect(pattern=) * also: added comments to note these general catch-all statements: except: pass # woah | ||||
| * | 2 unicode fixes + some docfix lang brevity | jquast | 2013-09-22 | 1 | -7/+8 |
| | | | | | | | | | | | | | | | | | | | interact() method failed, which attempted to write raw bytes: >>> sys.stdout.write(b'') Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: must be str, not bytes this is resolved in class spawn, by encoding as 'ascii'. A much more serious looping test failed, where val == '', and val is b'' >>> b'' == '' False Also included is some docfix language | ||||
| * | doc brevity and clean-up | jquast | 2013-09-22 | 1 | -7/+7 |
| | | | | | take a byte out of i/o crime. | ||||
| * | Fix run() for Python 3 | Thomas Kluyver | 2013-09-20 | 1 | -3/+3 |
| | | |||||
| * | Fix logging tests for Python 3 | Thomas Kluyver | 2013-09-20 | 1 | -2/+5 |
| | | |||||
| * | Add spawnu interface for unicode | Thomas Kluyver | 2013-09-19 | 1 | -33/+93 |
| | | |||||
| * | Changes towards Python 3 compatibility. | Thomas Kluyver | 2013-09-17 | 1 | -18/+36 |
| | | |||||
| * | Start reorganising into package | Thomas Kluyver | 2013-09-17 | 1 | -0/+1952 |
