Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [compat] Handle tuples properly in urlencode() | Yen Chi Hsuan | 2016-04-06 | 1 | -0/+4 |
| | | | | Fixes #9055 | ||||
* | [test_compat] Add tests for compat_urllib_parse_urlencode | Sergey M․ | 2016-03-26 | 1 | -0/+7 |
| | |||||
* | [compat] compat_etree_fromstring: also decode the text attribute | Jaime Marquínez Ferrándiz | 2015-10-26 | 1 | -1/+10 |
| | | | | Deletes parse_xml from utils, because it also does it. | ||||
* | [compat] compat_etree_fromstring: only decode bytes objects | Jaime Marquínez Ferrándiz | 2015-10-25 | 1 | -1/+2 |
| | |||||
* | Use a wrapper around xml.etree.ElementTree.fromstring in python 2.x (#7178) | Jaime Marquínez Ferrándiz | 2015-10-25 | 1 | -0/+7 |
| | | | | Attributes aren't unicode objects, so they couldn't be directly used in info_dict fields (for example '--write-description' doesn't work with bytes). | ||||
* | [test_compat] Fix typo | Sergey M․ | 2015-09-05 | 1 | -1/+1 |
| | |||||
* | [test_compat] Add test for compat_shlex_split | Sergey M․ | 2015-09-05 | 1 | -0/+4 |
| | |||||
* | [test_compat] Add tests for compat_urllib_parse_unquote_plus | Sergey M․ | 2015-07-17 | 1 | -0/+7 |
| | |||||
* | [test_compat] Remove redundant test | Sergey M․ | 2015-07-17 | 1 | -1/+0 |
| | |||||
* | [test_compat] Make tests more idiomatic | Sergey M․ | 2015-07-17 | 1 | -17/+16 |
| | |||||
* | Add tests for compat_urllib_parse_unquote | fnord | 2015-07-17 | 1 | -0/+20 |
| | |||||
* | [test/test_compat] Restore the old value of the HOME environment variable | Jaime Marquínez Ferrándiz | 2014-11-19 | 1 | -0/+2 |
| | | | | | | | If the test was run before the YoutubeIE tests (for example by running "nosetests -v test/test_compat.py test/test_download.py -m 'Youtube_1|compat_expand'"), it wrote the signatures cache to the 'C:\Documents and Settings\тест\Application Data' folder. It failed due to a problem in the cache code and the write_json_file function (fixed in f03e33b89a622af13fa5275c46b63aaa4814c499) | ||||
* | [test_compat] Ignore unicode_literals | Philipp Hagemeister | 2014-11-03 | 1 | -1/+1 |
| | |||||
* | [util] Move compatibility functions out of util | Philipp Hagemeister | 2014-11-02 | 1 | -0/+44 |
utils is large enough without these compatibility functions. Everything that is present in newer versions of Python (i.e. with dev Python it's just an import) goes into compat.py . Everything else (i.e. youtube-dl-specific helpers) goes into utils.py . |