Adrian Sampson
da4bd64b18
Fix broken links to EchoNest docs
2016-05-30 22:40:30 -07:00
Adrian Sampson
2f4c7ee7a5
Simplify export plugins
2016-05-30 22:38:24 -07:00
Adrian Sampson
395877d903
Remove the Echo Nest plugin 😢 ( #1920 )
2016-05-30 22:25:58 -07:00
Johnny Robeson
81484529c9
remove b' from a few more stdlib calls
2016-05-31 00:13:09 -04:00
Johnny Robeson
330306bbe2
remove bytes casts from object/method resolution code
2016-05-30 23:21:24 -04:00
Johnny Robeson
e6ab231f72
Revert "Remove bytes casting for non-path command args/opts"
...
This reverts commit 2a6e74bc27 .
2016-05-30 22:00:42 -04:00
Johnny Robeson
2a6e74bc27
Remove bytes casting for non-path command args/opts
2016-05-30 21:42:44 -04:00
Johnny Robeson
35c539b5a4
remove b' from various web request respones
2016-05-30 21:30:17 -04:00
Johnny Robeson
94bab42f97
use strings (not bytes) for flask responder names
2016-05-30 21:19:15 -04:00
Johnny Robeson
28c0c95ed9
remove b' from struct (un)packing calls
2016-05-30 20:30:21 -04:00
Johnny Robeson
7a1ca51c49
remove b' from platform checks
2016-05-30 20:29:17 -04:00
Johnny Robeson
023ad9f48f
remove b' from pipline sentinels
2016-05-30 20:28:36 -04:00
Johnny Robeson
cd1f79340f
remove explicit b' from sql query dict key names
2016-05-30 18:50:11 -04:00
Johnny Robeson
32d4545b5e
set min-version to 2.7 in setup.cfg
2016-05-30 16:32:34 -04:00
Johnny Robeson
88c5fe6069
add missing space in mediafile comment
2016-05-30 15:44:21 -04:00
Johnny Robeson
9193cb3f45
Revert "readd deprecated plugins search with name == b'name'"
...
This reverts commit a5921f625c .
2016-05-30 15:43:12 -04:00
Johnny Robeson
62ba435cd6
keyword args can't be bytes, so remove b' prefix
2016-05-30 01:59:17 -04:00
Johnny Robeson
358c60e43b
reword a comment in mediafile
2016-05-30 01:58:05 -04:00
Johnny Robeson
c52394c499
fix the rest of b'__main__':
2016-05-30 01:11:37 -04:00
Johnny Robeson
a5921f625c
readd deprecated plugins search with name == b'name'
...
This is to make sure we can still load plugins based off official
plugins between the time of 9c41c39913 and 71b9fd785c
2016-05-30 01:03:18 -04:00
Adrian Sampson
71b9fd785c
Revert "Do __name__ comparison with bytes and not unicode"
...
This reverts commit 9c41c39913 .
That commit used byte strings for the `if __name__ == '__main__'` pattern,
which was necessary when we were doing unicode_literals. But it is wrong on
Python 3, and now that we're liberated from unicode_literals, we need to go
back to native strings for this comparison.
2016-05-29 19:19:59 -07:00
Johnny Robeson
662bc1858d
use list() on map() when we really want lists not iters
2016-05-29 20:49:06 -04:00
Johnny Robeson
a37a52633b
replace deprecated assertNotEquals() with assertNotEqual()
2016-05-29 04:03:54 -04:00
Johnny Robeson
c330f3abc3
replace deprecated assert_() with assertTrue()
2016-05-29 03:56:39 -04:00
Johnny Robeson
78387e3f10
Merge pull request #2024 from jrobeson/remove-unnecessary-library-import
...
Remove library import from __init__.py
2016-05-28 23:15:21 -04:00
Johnny Robeson
9b2e126132
remove __future__ import from py3 native release.py
2016-05-28 17:24:55 -04:00
Johnny Robeson
93c5e4b5a8
Remove library import from __init__.py
2016-05-28 17:05:48 -04:00
Johnny Robeson
ce8d7bf9f1
remove unittest2 import (py < 2.7)
2016-05-27 23:46:33 -04:00
Markus Unterwaditzer
e82080aec6
Don't cache tox directory
...
This appears to break pull requests and branches that introduce new
dependencies
See #1484 for example
2016-05-28 01:25:12 +02:00
Markus Unterwaditzer
5dcea9cb0f
Merge pull request #2023 from untitaker/python-modernize
...
Py3 compat: Run python-modernize across the codebase
2016-05-28 00:29:07 +02:00
Markus Unterwaditzer
f2f18d9d56
Fix variable names
2016-05-28 00:26:58 +02:00
Markus Unterwaditzer
5c41a9e767
Remove superfluous parens
2016-05-28 00:26:57 +02:00
Markus Unterwaditzer
0fc07c28bc
Stylefixes
2016-05-28 00:26:57 +02:00
Markus Unterwaditzer
9518f28faa
Fix numeric types
2016-05-28 00:26:57 +02:00
Markus Unterwaditzer
1ae6ce04dd
Run python-modernize across the codebase
2016-05-27 23:13:01 +02:00
Markus Unterwaditzer
7970681289
Merge pull request #2022 from jrobeson/py3-compat-replace-iter.next
...
use next() instead of iter.next() throughout
2016-05-27 23:12:18 +02:00
Johnny Robeson
b99a6acc54
use next() instead of iter.next() throughout
2016-05-27 17:00:40 -04:00
Johnny Robeson
9e03e7c8cf
Merge pull request #2020 from jrobeson/update-gitignore
...
Rebase our .gitignore on top of gitignore.io
2016-05-27 15:39:48 -04:00
Adrian Sampson
976606f5e6
Changelog and thanks for #2010
2016-05-27 00:18:52 -07:00
Adrian Sampson
59435792e9
Merge pull request #2010 from sumpfralle/web-api-unique-results
...
web: add API functions for retrieving unique values of specific keys
2016-05-27 00:15:34 -07:00
Adrian Sampson
4d11b9c4f1
Merge pull request #2019 from jrobeson/py3-compat-use-reduce-from-functools
...
use reduce() from functools
2016-05-27 00:10:15 -07:00
Adrian Sampson
a97c9b8c3c
Merge pull request #2017 from jrobeson/py3-compat-exec
...
use exec() in a python3 compatible way
2016-05-27 00:09:45 -07:00
Adrian Sampson
47f2a4ef31
Merge pull request #2016 from jrobeson/octal-confusions
...
clear up octal confusions for python 2/3 compat
2016-05-27 00:08:40 -07:00
Johnny Robeson
a3b219d7c2
Rebase our .gitignore on top of gitignore.io
2016-05-27 00:56:00 -04:00
Johnny Robeson
a405a072f7
use reduce() from functools
2016-05-26 23:52:35 -04:00
Johnny Robeson
038c36b974
Merge pull request #2018 from jrobeson/py3-compat-confit-next-if-py3
...
remove unneeded if PY3 in iter_first
2016-05-26 23:01:23 -04:00
Johnny Robeson
f1ecf0af10
remove unneeded if PY3 in iter_first
2016-05-26 22:40:55 -04:00
Johnny Robeson
d6d7341314
use exec() in a python3 compatible way
2016-05-26 22:37:41 -04:00
Johnny Robeson
7f41d5c188
use 0o prefix when we want octal
2016-05-26 22:31:55 -04:00
Johnny Robeson
cede0ed466
remove leading 0 when octal is unwanted
2016-05-26 22:31:25 -04:00