##// END OF EJS Templates
Remove docs for deprecated extensions...
Remove docs for deprecated extensions cythonmagic and sympyprinting are no longer part of our code. In both cases, we deprecated it with a warning in 3.x, and in 4.x the extension won't work but will print a message pointing you to what to do instead. We can remove the modules entirely for 5.x.

File last commit:

r16114:15cc5a8e
r21573:18bbe9af
Show More
hb_gil.py
31 lines | 574 B | text/x-python | PythonLexer
"""
Run this script in the qtconsole with one of:
%load hb_gil.py
or
%run hb_gil.py
Holding the GIL for too long could disrupt the heartbeat.
See Issue #1260: https://github.com/ipython/ipython/issues/1260
"""
import sys
import time
from cython import inline
def gilsleep(t):
"""gil-holding sleep with cython.inline"""
code = '\n'.join([
'from posix cimport unistd',
'unistd.sleep(t)',
])
while True:
inline(code, quiet=True, t=t)
print(time.time())
sys.stdout.flush() # this is important
gilsleep(5)