| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Fixes #285
|
|
|
|
|
|
|
| |
v3 and v4 CLI will be very different, so start moving things in their
own folders.
For now v4 isn't working at all.
|
| |
|
|
|
|
| |
We don't do math.
|
|
|
|
|
| |
Fixes AttributeError on Python 3, as `urlencode` function has been moved to `urllib.parse` module.
`six.moves.urllib.parse.urlencode()` is an py2.py3 compatible alias of `urllib.parse.urlencode()` on Python 3, and of `urllib.urlencode()` on Python 2.
|
| |
|
|
Having objects managing both versions will only make the code more
complicated, with lots of tests everywhere. This solution might generate
some code duplication, but it should be maintainable.
|