##// END OF EJS Templates
Merge pull request #3734 from jdfreder/file_subdir...
Merge pull request #3734 from jdfreder/file_subdir Nbconvert: Export extracted files into `nbname_files` subdirectory Default build directory changed to . Files extracted from notebook now are placed into a ./notebook_files/ directory by default Spaces added between # symbols and comments It may be best to look at the diffs of the individual commits... The addition of spaces in the comments makes the overall diff hard to read.

File last commit:

r9399:16e26cab
r11642:321025c8 merge
Show More
clipboard.py
55 lines | 1.7 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
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()
text = win32clipboard.GetClipboardData(win32clipboard.CF_TEXT)
Robert Kern
Add %paste magic for direct pasting from the clipboard.
r1841 # FIXME: convert \r\n to \n?
Bernardo B. Marques
remove all trailling spaces
r4872 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:
import Tkinter
except ImportError:
Bradley M. Froehle
Remove args/kwargs handling in TryNext....
r7334 raise TryNext("Getting text from the clipboard on this platform "
"requires Tkinter.")
Robert Kern
Add %paste magic for direct pasting from the clipboard.
r1841 root = Tkinter.Tk()
root.withdraw()
text = root.clipboard_get()
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