[object Object]
[object Object]
Comment moved from [the PR](https://github.com/smarie/python-makefun/pull/86/files#r914938190) per your request, though I think this is more of an implementation detail than a decision about features: The problem is that if you pass...
@tiangolo This PR has 3 approvals. Could you please merge this PR or comment about what additional steps I should take prior to merge? Thanks!
I ran into this. The following is some simple code that reproduces it: ```python [ x for x # Some comment. in y ] ```
I think the object proxy model that wrapt is using is incompatible with what I was trying to do. Short of a total redesign, I don't see a solution to...
Using very generic exceptions types (especially `ValueError`) can make code that does different things in different error cases very difficult. In the guide you say: > A good rule of...
Agree with @nirradi that adding a missing `__init__.py` fixed the problem for me. **To future visitors to this page: you may be missing `__init__.py` files somewhere in your packages.** Maybe...
In addition to spuriously parsing `from x import y` as though y were a module, the underlying cause of this is https://github.com/google/pytype/issues/151 (no PEP 561 support in pytype). Pydantic is...
I recently discovered that my fork referenced in this PR is still being used by some people. If you are still using this library, you should switch to the django...
Erik: this is the last one today, I promise! :-) Again, no rush on any of this. Thanks for your work on Parsimonious!
### tl;dr > Maybe we could split up this work. The "ignoring" syntax is by far the hardest part, so I'm happy to leave it to you. :-D The other...