mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
10 lines
299 B
Python
10 lines
299 B
Python
__author__ = 'Ilya.Kazakevich'
|
|
from external_module import SOME_VARIABLE, SOME_LIST
|
|
from some_package import VARIABLE_IN_PACKAGE
|
|
from some_package.module_in_package import *
|
|
from some_package.another_module_in_package import VARIABLE_IN_PACKAGE_MODULE_2 as MY_RENAMED_VAR
|
|
|
|
|
|
SOME_LIST += ['c', 'd']
|
|
|