kasium

Results 98 comments of kasium

Any opinions on this alredy. Is this something which can be considered? Or should they be added to typeshed?

Since there seems no progress on this issue since a while and publishing them as part of typeshed is easier, I created a PR: https://github.com/python/typeshed/pull/11591

Hi guys, can you please shortly share the current status? Can you please give a hint where to contribute? Given that pylint is now typed and mypyc would be cool...

Thanks for the insights!

Not very nice, but here is a simple example ```python from threading import Event, Thread from flask import Flask from cheroot.wsgi import Server from cheroot.workers.threadpool import WorkerThread app = Flask("sample")...

@eranbetzalel had you time to create a PR? This is quite bad issue for me

@sigmavirus24 Reason for this is that in https://github.com/PyCQA/pydocstyle/pull/381 the following was suggested > Mistakenly using an f-string for a docstring does not cause a syntax error, so we shouldn't raise...

@sigmavirus24 I drilled it down to that code. And `python foo.py` returns no error, so it's valid python. You are right, it's from the stdlib but it seems that pydocstyle...

@sigmavirus24 the issue is in `pydocstyle/checker.py` `check_docstring_empty`. It passes the whole code to `ast.literal_eval` which is not valid, because literal_eval cannot handled f-strings. I'm happy to open a PR if...