diff options
author | Steve Dower <steve.dower@microsoft.com> | 2017-01-02 04:25:03 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2017-01-02 04:25:03 (GMT) |
commit | ea74f0cd4a11c86f256b2c7d550bc317d80c9fc5 (patch) | |
tree | d2f25a6fdf94d2b7d594667a3213dfd26870875f /Lib/test/test_capi.py | |
parent | 4fb5e76dcae03c2930e61207b4b32b7987ba302f (diff) | |
download | cpython-ea74f0cd4a11c86f256b2c7d550bc317d80c9fc5.zip cpython-ea74f0cd4a11c86f256b2c7d550bc317d80c9fc5.tar.gz cpython-ea74f0cd4a11c86f256b2c7d550bc317d80c9fc5.tar.bz2 |
Issue #24932: Use proper command line parsing in _testembed
Diffstat (limited to 'Lib/test/test_capi.py')
-rw-r--r-- | Lib/test/test_capi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_capi.py b/Lib/test/test_capi.py index 6c3625d..2a53f3d 100644 --- a/Lib/test/test_capi.py +++ b/Lib/test/test_capi.py @@ -385,7 +385,7 @@ class EmbeddingTests(unittest.TestCase): def test_subinterps(self): # This is just a "don't crash" test - out, err = self.run_embedded_interpreter() + out, err = self.run_embedded_interpreter("repeated_init_and_subinterpreters") if support.verbose: print() print(out) |