summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_capi.py
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-06-03 16:14:24 (GMT)
committerGitHub <noreply@github.com>2019-06-03 16:14:24 (GMT)
commite225bebc1409bcf68db74a35ed3c31222883bf8f (patch)
tree42153d2d48a3f1c784812b4fb54ed3557be713d0 /Lib/test/test_capi.py
parent49a7e347976c9b39149ac7505b11ad6e9e2bdeec (diff)
downloadcpython-e225bebc1409bcf68db74a35ed3c31222883bf8f.zip
cpython-e225bebc1409bcf68db74a35ed3c31222883bf8f.tar.gz
cpython-e225bebc1409bcf68db74a35ed3c31222883bf8f.tar.bz2
Revert "bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-13714)" (GH-13780)
This reverts commit 6a150bcaeb190d1731b38ab9c7a5d1a352847ddc.
Diffstat (limited to 'Lib/test/test_capi.py')
-rw-r--r--Lib/test/test_capi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_capi.py b/Lib/test/test_capi.py
index 88bda05..43d7a08 100644
--- a/Lib/test/test_capi.py
+++ b/Lib/test/test_capi.py
@@ -431,7 +431,7 @@ class TestPendingCalls(unittest.TestCase):
def test_pendingcalls_threaded(self):
#do every callback on a separate thread
- n = 32 #total callbacks (see NPENDINGCALLS in pycore_ceval.h)
+ n = 32 #total callbacks
threads = []
class foo(object):pass
context = foo()