Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove code that was only used by the Grooveshark extractor | Jaime Marquínez Ferrándiz | 2015-05-02 | 1 | -6/+0 |
| | |||||
* | Don't use bare 'except:' | Jaime Marquínez Ferrándiz | 2015-03-27 | 1 | -1/+1 |
| | | | | They catch any exception, including KeyboardInterrupt, we don't want to catch it. | ||||
* | Use shutil.get_terminal_size for getting the terminal width if it's ↵ | Jaime Marquínez Ferrándiz | 2015-02-28 | 1 | -0/+30 |
| | | | | available (python >= 3.3) | ||||
* | [compat] Correct compat_basestring definition | Philipp Hagemeister | 2015-02-01 | 1 | -2/+3 |
| | |||||
* | Appease pyflakes8-3 | Philipp Hagemeister | 2015-02-01 | 1 | -16/+21 |
| | |||||
* | Add a test for --no-check-certificate | Philipp Hagemeister | 2015-01-30 | 1 | -0/+6 |
| | |||||
* | [compat] Correct socket error class reference | Philipp Hagemeister | 2015-01-11 | 1 | -1/+1 |
| | |||||
* | [test_compat] Fix alphabetic order to make test_all_present pass | Sergey M․ | 2015-01-11 | 1 | -1/+1 |
| | |||||
* | Add new option --source-address | Philipp Hagemeister | 2015-01-10 | 1 | -0/+28 |
| | | | | Closes #3618, fixes #721, fixes #2481, fixes #4551, closes #1020. | ||||
* | [compat] Simplify kwarg detection code | Philipp Hagemeister | 2014-12-12 | 1 | -1/+3 |
| | | | | This enables nuitka to compile youtube-dl. | ||||
* | Revert "[utils] Work around PyPy stupidity with Windows DLLs (Fixes #4392)" | Philipp Hagemeister | 2014-12-12 | 1 | -19/+0 |
| | | | | This reverts commit 16040f46d64bad8dcc5f948288ef469dd787d3d3. | ||||
* | [utils] Work around PyPy stupidity with Windows DLLs (Fixes #4392) | Philipp Hagemeister | 2014-12-12 | 1 | -0/+19 |
| | |||||
* | Fix PEP8 issue E713 | Jaime Marquínez Ferrándiz | 2014-12-09 | 1 | -1/+1 |
| | |||||
* | [compat] Beautify assertion | Philipp Hagemeister | 2014-11-26 | 1 | -1/+1 |
| | |||||
* | PEP8: applied even more rules | Jouke Waleson | 2014-11-23 | 1 | -3/+3 |
| | |||||
* | PEP8 applied | Jouke Waleson | 2014-11-23 | 1 | -15/+17 |
| | |||||
* | Provide guidance when called with a YouTube ID starting with a dash. | Philipp Hagemeister | 2014-11-23 | 1 | -1/+5 |
| | | | | Reported at https://news.ycombinator.com/item?id=8648121 | ||||
* | remove unused imports | Philipp Hagemeister | 2014-11-20 | 1 | -1/+1 |
| | |||||
* | [compat] correct OptionGroup invocation for Python 3 (fixes #4243) | Philipp Hagemeister | 2014-11-20 | 1 | -2/+4 |
| | |||||
* | Work around 2.7.0 deficencies (Fixes #4223) | Philipp Hagemeister | 2014-11-19 | 1 | -0/+22 |
| | |||||
* | [compat] Work around kwargs bugs in old 2.6 Python releases (Fixes #3813) | Philipp Hagemeister | 2014-11-15 | 1 | -0/+9 |
| | |||||
* | [compat] Modernize | Philipp Hagemeister | 2014-11-02 | 1 | -0/+2 |
| | |||||
* | [compat] Fix imports | Philipp Hagemeister | 2014-11-02 | 1 | -0/+1 |
| | |||||
* | [util] Move compatibility functions out of util | Philipp Hagemeister | 2014-11-02 | 1 | -0/+314 |
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 . |