mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
9 lines
118 B
Python
Vendored
9 lines
118 B
Python
Vendored
def func():
|
|
pass
|
|
func.__module__ = None
|
|
|
|
class A:
|
|
def method(self):
|
|
pass
|
|
method.__module__ = None
|