()
| 106 | |
| 107 | |
| 108 | def test_instanceof_pyobject(): |
| 109 | class MyClass: |
| 110 | def __init__(self): |
| 111 | self.a = 42 |
| 112 | |
| 113 | o = MyClass() |
| 114 | assert pm.eval("(obj) => { return obj instanceof Object; }")(o) |
| 115 | |
| 116 | |
| 117 | def test_pyobjects_not_instanceof_string(): |