summaryrefslogtreecommitdiffstats
path: root/flit_core/flit_core/tests/samples/module2.py
blob: 0f36679f86bf62467d0219a30fd1e85f8b3f1695 (plain)
1
2
3
4
5
6
7
8
9
10
"""
Docstring formatted like this.
"""

a = {}
# An assignment to a subscript (a['test']) broke introspection
# https://github.com/pypa/flit/issues/343
a['test'] = 6

__version__ = '7.0'