непосредственном передастся сам словарь?
test_dict = {'a': 'b', 'c': 'd'}
print(id(test_dict))
import dict_for
from dict_for import test_dict
print(id(test_dict))
PS D:\Dropbox\Develop\all_tests> python dict_import.py
9434768
9434768
print(hex(id(test_dict)))
PS D:\Dropbox\Develop\all_tests> python dict_import.py
0xb4bd20
0xb4bd20