mobiusklein added the comment:
Understood. It's probably good practice to keep the interpreter version up to
date in any case when debugging.
--
resolution: -> works for me
stage: -> resolved
status: open -> closed
___
Python t
New submission from mobiusklein :
The following code looks correct:
```python
import os
class A(os.PathLike):
pass
class B(os.PathLike):
pass
assert issubclass(A, os.PathLike) # direct inheritance relationship
assert issubclass(B, os.PathLike) # direct inheritance relationship