Anders Hovmöller
Anders Hovmöller
Hey @nklapste maybe you can take a look at this? I don't have a windows machine so I have to push to travis to try to figure this out and...
This repo https://github.com/nedbat/templite isn't handled properly, because the tests live in `test_templite.py` and mutmut only looks for tests in `test/` or `tests/`. We should also look for `test_*.py` Found by...
Searching for ["through"](https://docs.djangoproject.com/en/3.2/search/?q=through) finds nothing: This search should link at least these: https://docs.djangoproject.com/en/3.2/topics/db/models/#extra-fields-on-many-to-many-relationships https://docs.djangoproject.com/en/3.2/ref/models/fields/#django.db.models.ManyToManyField.through
https://www.python.org/dev/peps/pep-0448/
https://www.python.org/dev/peps/pep-3115/ You get a parser error when trying to parse this simple code: `class Foo(Bar, metaclass=Baz): pass`
This is unfortunately a potentially a breaking change for users. Fixes #84
I've recently discovered the newly release library parso that seems to overlap a bit with what baron does (but provides python 3 support!). I prefer the pure dicts/list/etc data structure...
It's valid in python to write ```python rb'foo' ``` but baron assumes only the prefix has the raw marker after the b.
Trying to run baron over numpy exposes some issues. This is the latest I've found: numpy/core/tests/test_umath.py ``` p = 9.999999999333333333e-6j + 1.000000000066666666e-5 ``` This code ends up as "1.000000000066666666e" and...