This website requires JavaScript.
Explore
Help
Sign In
djsundog
/
circuitpython
Watch
1
Star
0
Fork
You've already forked circuitpython
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
0b8824313a
circuitpython
/
tests
/
feature_check
/
reverse_ops.py
10 lines
117 B
Python
Raw
Normal View
History
Unescape
Escape
tests/class_reverse_op: Test for reverse arith ops special methods. This test should be run only if support for reverse ops is enabled, so the corresponding feature_check is added to run-tests.
2017-09-10 10:05:31 -04:00
class
Foo
:
def
__radd__
(
self
,
other
)
:
pass
run code formatting script
2021-03-15 09:57:36 -04:00
tests/class_reverse_op: Test for reverse arith ops special methods. This test should be run only if support for reverse ops is enabled, so the corresponding feature_check is added to run-tests.
2017-09-10 10:05:31 -04:00
try
:
5
+
Foo
(
)
except
TypeError
:
print
(
"
TypeError
"
)