From: Benjamin Peterson Date: Fri, 18 Jan 2013 05:44:49 +0000 (-0500) Subject: support -> test_support X-Git-Tag: v2.7.4rc1~237 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2f78f0e1f9b65853b1e44fdc3c75ed5af933638f;p=thirdparty%2FPython%2Fcpython.git support -> test_support --- diff --git a/Lib/test/test_signal.py b/Lib/test/test_signal.py index fa06729b6ea5..7483f64123ed 100644 --- a/Lib/test/test_signal.py +++ b/Lib/test/test_signal.py @@ -230,7 +230,7 @@ class WindowsSignalTests(unittest.TestCase): class WakeupFDTests(unittest.TestCase): def test_invalid_fd(self): - fd = support.make_bad_fd() + fd = test_support.make_bad_fd() self.assertRaises(ValueError, signal.set_wakeup_fd, fd)