forked from Rust-related/RustPython
13 lines
112 B
Python
13 lines
112 B
Python
|
|
class A:
|
|
def test():
|
|
pass
|
|
|
|
a = A()
|
|
|
|
assert "test" in dir(a)
|
|
|
|
import socket
|
|
|
|
assert "AF_INET" in dir(socket)
|