summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_windows_events.py
diff options
context:
space:
mode:
authorVladimir Matveev <v2matveev@outlook.com>2019-01-08 09:58:25 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-01-08 09:58:25 (GMT)
commitc24c6c2c9357da99961bf257078240529181daf3 (patch)
tree552b9c627f21770d971d26f0d7d38e8a1b58ea02 /Lib/test/test_asyncio/test_windows_events.py
parente61cc481e02b758c8d8289163102c236d0658a55 (diff)
downloadcpython-c24c6c2c9357da99961bf257078240529181daf3.zip
cpython-c24c6c2c9357da99961bf257078240529181daf3.tar.gz
cpython-c24c6c2c9357da99961bf257078240529181daf3.tar.bz2
bpo-35568: add 'raise_signal' function (GH-11335)
As in title, expose C `raise` function as `raise_function` in `signal` module. Also drop existing `raise_signal` in `_testcapi` module and replace all usages with new function. https://bugs.python.org/issue35568
Diffstat (limited to 'Lib/test/test_asyncio/test_windows_events.py')
-rw-r--r--Lib/test/test_asyncio/test_windows_events.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_windows_events.py b/Lib/test/test_asyncio/test_windows_events.py
index a200a8a..05f8515 100644
--- a/Lib/test/test_asyncio/test_windows_events.py
+++ b/Lib/test/test_asyncio/test_windows_events.py
@@ -45,7 +45,7 @@ class ProactorLoopCtrlC(test_utils.TestCase):
def SIGINT_after_delay():
time.sleep(1)
- _testcapi.raise_signal(signal.SIGINT)
+ signal.raise_signal(signal.SIGINT)
asyncio.set_event_loop_policy(asyncio.WindowsProactorEventLoopPolicy())
l = asyncio.get_event_loop()