mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-07-28 09:58:27 -06:00
9 lines
118 B
Python
9 lines
118 B
Python
def func():
|
|
pass
|
|
func.__module__ = None
|
|
|
|
class A:
|
|
def method(self):
|
|
pass
|
|
method.__module__ = None
|