pyo3/examples/rustapi_module/tests/test_subclassing.py

16 lines
265 B
Python

import platform
from rustapi_module.subclassing import Subclassable
PYPY = platform.python_implementation() == "PyPy"
class SomeSubClass(Subclassable):
pass
def test_subclassing():
if not PYPY:
a = SomeSubClass()
_b = str(a) + repr(a)