From f75c3f7d63aa57251b6ebabf1e5d2a0c68f43f74 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Sat, 23 May 2020 19:43:15 +0100 Subject: [PATCH] Introduce test failure for gh-343 --- flit_core/flit_core/tests/samples/module2.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/flit_core/flit_core/tests/samples/module2.py b/flit_core/flit_core/tests/samples/module2.py index cc83e39f..70c868b3 100644 --- a/flit_core/flit_core/tests/samples/module2.py +++ b/flit_core/flit_core/tests/samples/module2.py @@ -2,4 +2,9 @@ Docstring formatted like this. """ +a = {} +# An assignment to a subscript (a['test']) broke introspection +# https://github.com/takluyver/flit/issues/343 +a['test'] = 6 + __version__ = '7.0'