Florian Best
Florian Best
### how did you install flake8? ```console pre-commit ``` ### unmodified output of `flake8 --bug-report` ```json { "platform": { "python_implementation": "CPython", "python_version": "3.7.3", "system": "Linux" }, "plugins": [ { "plugin":...
## Python Code ```python from foo import ( # noqa: E402 bar, baz, blub ) ``` does not fix the 8 space over indentation (E126) as it's only detected by...
Could you add classifiers to `setup.py` which tell the compatible python versions? e.g. `Programming Language :: Python :: 2.7` `Programming Language :: Python :: 3.7`
I want to display dynamic content on each page header: `` (in the pageGraphics-section) It just displays nothing.
Hello ;) You saved my life. But my biggest problem now is to be able to send uppercase chars. How to? ./xsendkey 'A' sends 'a'.
We received a customer feedback, from someone who uses dudle via the Univention App Center: ``` Bei meinem ersten Versuch das dudle zu benutzen, musste ich feststellen dass es alles...
SmartCookie as well as SerialCookie are vulnerable to code injection in python2. For example, the following cookie header would shutdown your server: Cookie: foo="cposix\012_exit\012p1\012(I1\012tp2\012Rp3\012."
SmartCookie as well as SerialCookie are vulnerable to code injection in python2. Cookie.Cookie maps to Cookie.SmartCookie. For example, the following cookie header would shutdown your server: Cookie: foo="cposix\012_exit\012p1\012(I1\012tp2\012Rp3\012."
* correct would be "sich" instead of "ich"
``` $ cat foo.py for foo, bar, baz in (['1', '2', '3'], ): if foo or baz: break int(bar) $ ruff --select B007 foo.py foo.py:1:10: B007 Loop control variable `bar`...