From 2067bfdf253e134a4144d3747300dbfcc7cc6203 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 25 May 2008 13:05:15 +0000 Subject: Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875. --- Lib/test/test_asynchat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/test/test_asynchat.py') diff --git a/Lib/test/test_asynchat.py b/Lib/test/test_asynchat.py index 4d49f581de..082fde9823 100644 --- a/Lib/test/test_asynchat.py +++ b/Lib/test/test_asynchat.py @@ -1,6 +1,6 @@ # test asynchat -- requires threading -import thread # If this fails, we can't test this module +import _thread as thread # If this fails, we can't test this module import asyncore, asynchat, socket, threading, time import unittest import sys -- cgit v1.2.1