1# -*- coding: utf-8 -*-
2#-----------------------------------------------------------------------------
3# Copyright (c) 2005-2019, PyInstaller Development Team.
4#
5# Distributed under the terms of the GNU General Public License with exception
6# for distributing bootloader.
7#
8# The full license is in the file COPYING.txt, distributed with this software.
9#-----------------------------------------------------------------------------
10
11'''
12Mock package defining a global variable of the same name as a mock submodule of
13this package.
14
15This package is exercised by the `test_import_submodule_global_shadowed`
16functional test.
17'''
18
19
20submodule = 'That is not dead which can eternal lie.'
21'''
22Global variable of the same name as a mock submodule of this package.
23
24This variable's value is arbitrary. This variable's type, however, is asserted
25to be `str` by this test.
26'''
27