##// END OF EJS Templates
suggested fix for autocall failure (#14555)...
suggested fix for autocall failure (#14555) Closes : #14513 Following the recommendation in that Issue seems to fix the autocall issue (for at least the reproduction case) FYI: @Carreau since I saw you were assigned to the Issue. I only did the manual verification of the example case in the issue.

File last commit:

r27747:f5d4e0ac
r28909:18e45295 merge
Show More
test_clipboard.py
20 lines | 630 B | text/x-python | PythonLexer
from IPython.core.error import TryNext
from IPython.lib.clipboard import ClipboardEmpty
from IPython.testing.decorators import skip_if_no_x11
@skip_if_no_x11
def test_clipboard_get():
# Smoketest for clipboard access - we can't easily guarantee that the
# clipboard is accessible and has something on it, but this tries to
# exercise the relevant code anyway.
try:
a = get_ipython().hooks.clipboard_get()
except ClipboardEmpty:
# Nothing in clipboard to get
pass
except TryNext:
# No clipboard access API available
pass
else:
assert isinstance(a, str)