mkorpela / overrides

A decorator to automatically detect mismatch when overriding a method
Apache License 2.0
261 stars 32 forks source link

Fix _is_same_module() on PyPy #119

Closed mgorny closed 9 months ago

mgorny commented 11 months ago

Fix _is_same_module() to account for __module__ attribute possibly being None, as it currently is in PyPy, rather than non-present, as it is in CPython.

Fixes #118

mkorpela commented 9 months ago

Thank you for the contribution!

mgorny commented 9 months ago

Thank you!