We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5eb27d8 commit 58a8b24Copy full SHA for 58a8b24
unpythonic/tests/test_dispatch.py
@@ -219,7 +219,7 @@ def instmeth(self, x: float):
219
#
220
# See discussions on interaction between `@staticmethod` and `super` in Python:
221
# https://bugs.python.org/issue31118
222
- # https://stackoverflow.com/questions/26788214/super-and-staticmethod-interaction/26807879
+ # https://stackoverflow.com/questions/26788214/super-and-staticmethod-interaction/26807879
223
test[tt2.staticmeth(3.14) == "float 6.28"] # this is available on `tt2`
224
test_raises[TypeError, tt2.staticmeth("hi")] # but this is not (no MRO)
225
test_raises[TypeError, tt2.staticmeth(21)]
0 commit comments