##// END OF EJS Templates
First step in reintegrating Jedi...
First step in reintegrating Jedi If Jedi is installed expose a private API use it with prompt toolkit. Jedi does not _yet_ provide all the completion IPython has, so this is still a bit awkward. In order to debug this (and see what is Jedi provided we for now inject a fake Jedi/IPython delimiter in the menu. Jedi completion and this behavior are enabled by default, but could likely be opt-in. Add also a number of debug flags to be able to track why jedi is not working, and/or what completions are found by IPython and not Jedi. That should give us a bit of heads up and feedback to know whether we can remove part of the IPython completer, and more especially if we can drop `python_matches`. Once `python_matches` is dropped and some other of the current matchers are either dropped or converted to the new API, that should simplify the internal quite a bit. That would just be too much for an already BIG pull-request.

File last commit:

r23056:bda4ba81
r23284:3ff1be2e
Show More
clipboard.py
69 lines | 2.1 KiB | text/x-python | PythonLexer
Robert Kern
Add %paste magic for direct pasting from the clipboard.
r1841 """ Utilities for accessing the platform's clipboard.
"""
import subprocess
Brian Granger
Continuing a massive refactor of everything.
r2205 from IPython.core.error import TryNext
Jörgen Stenarson
Fix of incorrect import statement
r8308 import IPython.utils.py3compat as py3compat
Robert Kern
Add %paste magic for direct pasting from the clipboard.
r1841
Thomas Kluyver
Better clipboard handling, esp. with pywin32...
r13426 class ClipboardEmpty(ValueError):
pass
Robert Kern
Add %paste magic for direct pasting from the clipboard.
r1841 def win32_clipboard_get():
""" Get the current clipboard's text on Windows.
Requires Mark Hammond's pywin32 extensions.
"""
try:
import win32clipboard
except ImportError:
Bradley M. Froehle
Remove args/kwargs handling in TryNext....
r7334 raise TryNext("Getting text from the clipboard requires the pywin32 "
"extensions: http://sourceforge.net/projects/pywin32/")
Bernardo B. Marques
remove all trailling spaces
r4872 win32clipboard.OpenClipboard()
Thomas Kluyver
Better clipboard handling, esp. with pywin32...
r13426 try:
text = win32clipboard.GetClipboardData(win32clipboard.CF_UNICODETEXT)
Thomas Kluyver
Catch more errors from clipboard access on Windows
r16764 except (TypeError, win32clipboard.error):
Thomas Kluyver
Better clipboard handling, esp. with pywin32...
r13426 try:
text = win32clipboard.GetClipboardData(win32clipboard.CF_TEXT)
text = py3compat.cast_unicode(text, py3compat.DEFAULT_ENCODING)
Thomas Kluyver
Catch more errors from clipboard access on Windows
r16764 except (TypeError, win32clipboard.error):
Thomas Kluyver
Better clipboard handling, esp. with pywin32...
r13426 raise ClipboardEmpty
finally:
win32clipboard.CloseClipboard()
Robert Kern
Add %paste magic for direct pasting from the clipboard.
r1841 return text
def osx_clipboard_get():
""" Get the clipboard's text on OS X.
"""
p = subprocess.Popen(['pbpaste', '-Prefer', 'ascii'],
stdout=subprocess.PIPE)
text, stderr = p.communicate()
# Text comes in with old Mac \r line endings. Change them to \n.
Aaron Meurer
Fix %paste in Python 3 on Mac...
r8817 text = text.replace(b'\r', b'\n')
Jörgen Stenarson
cast clipboard_get strings on OSX and Linux to unicode
r8305 text = py3compat.cast_unicode(text, py3compat.DEFAULT_ENCODING)
Robert Kern
Add %paste magic for direct pasting from the clipboard.
r1841 return text
def tkinter_clipboard_get():
""" Get the clipboard's text using Tkinter.
This is the default on systems that are not Windows or OS X. It may
interfere with other UI toolkits and should be replaced with an
implementation that uses that toolkit.
"""
try:
Srinivas Reddy Thatiparthy
remove python2 import statement
r23056 from tkinter import Tk, TclError
Robert Kern
Add %paste magic for direct pasting from the clipboard.
r1841 except ImportError:
Srinivas Reddy Thatiparthy
remove python2 import statement
r23056 raise TryNext("Getting text from the clipboard on this platform requires tkinter.")
Thomas Kluyver
Update imports for Python 3...
r13354 root = Tk()
Robert Kern
Add %paste magic for direct pasting from the clipboard.
r1841 root.withdraw()
Thomas Kluyver
Better clipboard handling, esp. with pywin32...
r13426 try:
text = root.clipboard_get()
except TclError:
raise ClipboardEmpty
finally:
root.destroy()
Jörgen Stenarson
cast clipboard_get strings on OSX and Linux to unicode
r8305 text = py3compat.cast_unicode(text, py3compat.DEFAULT_ENCODING)
Robert Kern
Add %paste magic for direct pasting from the clipboard.
r1841 return text