mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
9 lines
255 B
Python
9 lines
255 B
Python
import shared_module
|
|
from shared_module import module_function as my_function
|
|
from shared_module import ModuleClass
|
|
|
|
class MyClass(object):
|
|
def do_useful_stuff(self):
|
|
i = shared_module.MODULE_CONTANT
|
|
my_function()
|
|
ModuleClass() |