| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
There was a problem hiding this comment.
Thanks for tackling this @eitanwass! I left a couple of suggestions/questions.
Sorry, something went wrong.
There was a problem hiding this comment.
Thanks!
Sorry, something went wrong.
|
Hmph, should have squashed... |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Fixed parametrized markers over staticmethod and classmethod decorators.
closes #12863
An interesting thing about this solution and python (<3.9 vs 3.10<) compatibility:
In python3.10, they changed @staticmethod and @classmethod decorators to inherit method attributes.
Before that version, functions wrapped with them did not return true for callable() func, so it failed tests for py39 and succeeded for py310.
link to changelog
For example: