Florian Best

Results 155 issues of Florian Best

Parse HTTP syntax correctly: `Accept-Language: en-US ; foo=bar; q=2.0` was not possible and is now possible.

web

`self.request.path` is the raw urlencoded path from the HTTP start line (i.e. it doesn't even normalize anything and takes whatever the client gives). The router `PathMatches` uses this to match...

routing

@myint Continuing https://github.com/hhatto/autopep8/pull/283

In the folloging example E266 is fixed while it shouldn't: ```autopep8.py --ignore E266 --select E2,E3,E4 -i -- $files```

The type(...) could be replaced by it's real type when changing type(x) == y into isinstance(). ``` if type(value) == type([]): if type(value) == type(''): if type(value) == type(""): if...

Are you aware of a method to apply autopep8 against paches/diff files? Or is there maybe a git merge driver which can apply autopep8 prior to merging so that one...

Actual result: ``` $ printf 'foo = bar \t# comment' | autopep8 -aaaaaaa --select E261 - foo = bar # comment ``` Expected result: ``` $ printf 'foo = bar...

needs patch in pycodestyle

If I run "autopep8 --select W503" there is no notification that "-aaa" needs to be given, and nothing is done. This should be improved somehow. Either by printing "ignored W503,...

``` foo(bar, baz, blah, "asdfasdfasdfs") ``` Would also fit into one line, and looks better as: ``` foo(bar, baz, blah, "asdfasdfasdfs") ```

I saw that autopep8 converts some things which might have side effects. I guess these changes are caused by W690 (not sure) but they aren't really documented and no reason...

enhancement