From 2d70e299985e59b626aedec6d803fc051b863f0c Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 20 Apr 2011 00:26:28 +0200 Subject: Issue #11223: fix test_dummy_threading, add _dummy_thread.info() --- Lib/_dummy_thread.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Lib/_dummy_thread.py b/Lib/_dummy_thread.py index 13b1f26..f2465a9 100644 --- a/Lib/_dummy_thread.py +++ b/Lib/_dummy_thread.py @@ -149,3 +149,6 @@ def interrupt_main(): else: global _interrupt _interrupt = True + +def info(): + return {'name': 'dummy'} -- cgit v0.12