1
0
mirror of https://github.com/wting/autojump synced 2024-09-28 22:10:45 +00:00
wting_autojump/tests
William Ting 1a0003d852 Fix encoding issues.
The original implementation used str.encode() on input and str.decode() on
output. However this would cause UnicodeDecodeError since certain characters
can't be encoded / decoded in ASCII.

The new solution is to use unicode() on all input strings and output UTF-8
encoded strings. This makes the assumption that the shell can handle UTF-8
strings.
2014-01-07 11:44:44 -06:00
..
__init__.py add iteration test cases 2013-12-31 16:33:32 -06:00
autojump_argparse.py Add Python 2.6 support back. 2014-01-07 09:56:30 -06:00
autojump_data_test.py add iteration test cases 2013-12-31 16:33:32 -06:00
autojump_data.py add iteration test cases 2013-12-31 16:33:32 -06:00
autojump_test.py add iteration test cases 2013-12-31 16:33:32 -06:00
autojump_utils_test.py Fix encoding issues. 2014-01-07 11:44:44 -06:00
autojump_utils.py add iteration test cases 2013-12-31 16:33:32 -06:00
autojump.py add iteration test cases 2013-12-31 16:33:32 -06:00