Aaron Meurer

Results 391 issues of Aaron Meurer

It would be useful to have `end_col` and `end_lineno` attributes on Message objects. The way it would work is that (col, lineno) to (end_col, end_lineno) would represent the range of...

pyflakes does some format specifier checks (https://github.com/PyCQA/pyflakes/pull/443), but it isn't able to detect invalid format specifiers. For example ```py f"{x:f.1}" "{x:f.1}".format(x=1) ``` are both wrong (the `f` is supposed to...

```py def test(): return x ``` gives `test.py:2:12 undefined name 'x'` as expected, but ```py def test(): global x return x ``` gives no warnings.

```py class Test: a = [1, 2, 3] b = [1, 2, 3] c = [i*j for i in a for j in b] ``` Pyflakes gives no errors here....

```py a = 1 def test(): a = 2 del a print(a) test() ``` The code produces `UnboundLocalError: local variable 'a' referenced before assignment`, but pyflakes shows now errors. The...

I just realized that I never opened an issue about this. After https://github.com/PyCQA/pyflakes/pull/20, several compile-time syntax errors are warned about, but not all of them. The reason is that when...

We need to figure out how to get SymPy Live to support Python 3. I saw https://stackoverflow.com/questions/24229203/does-google-app-engine-support-python-3 but I couldn't figure out how to get it working. SymPy will drop...

If you try to select and copy code in the Sphinx extension, it just runs the code, and deselects it. The only way to do it is to copy the...

I just discovered by using the iPad simulator that SymPy Live opens in the desktop version by default on the iPad. This is fine, as there's enough room for it,...