Show More
@@ -1,3 +1,8 b'' | |||||
|
1 | """Input transformer classes to support IPython special syntax. | |||
|
2 | ||||
|
3 | This includes the machinery to recognise and transform ``%magic`` commands, | |||
|
4 | ``!system`` commands, ``help?`` querying, prompt stripping, and so forth. | |||
|
5 | """ | |||
1 | import abc |
|
6 | import abc | |
2 | import functools |
|
7 | import functools | |
3 | import re |
|
8 | import re |
@@ -1,6 +1,6 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 | """ |
|
2 | """ | |
3 | ultratb.py -- Spice up your tracebacks! |
|
3 | Verbose and colourful traceback formatting. | |
4 |
|
4 | |||
5 | **ColorTB** |
|
5 | **ColorTB** | |
6 |
|
6 |
@@ -1,4 +1,4 b'' | |||||
1 | """Publishing |
|
1 | """Publishing native (typically pickled) objects. | |
2 | """ |
|
2 | """ | |
3 |
|
3 | |||
4 | #----------------------------------------------------------------------------- |
|
4 | #----------------------------------------------------------------------------- |
@@ -1,3 +1,5 b'' | |||||
|
1 | """Replacements for sys.displayhook that publish over ZMQ. | |||
|
2 | """ | |||
1 | import sys |
|
3 | import sys | |
2 |
|
4 | |||
3 | from IPython.core.displayhook import DisplayHook |
|
5 | from IPython.core.displayhook import DisplayHook |
@@ -1,4 +1,4 b'' | |||||
1 |
""" |
|
1 | """Some generic utilities for dealing with classes, urls, and serialization. | |
2 |
|
2 | |||
3 | Authors: |
|
3 | Authors: | |
4 |
|
4 |
@@ -1,4 +1,4 b'' | |||||
1 |
""" |
|
1 | """A navigable completer for the qtconsole""" | |
2 | # coding : utf-8 |
|
2 | # coding : utf-8 | |
3 | #----------------------------------------------------------------------------- |
|
3 | #----------------------------------------------------------------------------- | |
4 | # Copyright (c) 2012, IPython Development Team.$ |
|
4 | # Copyright (c) 2012, IPython Development Team.$ |
@@ -1,4 +1,4 b'' | |||||
1 |
""" |
|
1 | """A simple completer for the qtconsole""" | |
2 | #----------------------------------------------------------------------------- |
|
2 | #----------------------------------------------------------------------------- | |
3 | # Copyright (c) 2012, IPython Development Team.$ |
|
3 | # Copyright (c) 2012, IPython Development Team.$ | |
4 | # |
|
4 | # |
@@ -1,3 +1,4 b'' | |||||
|
1 | """A dropdown completer widget for the qtconsole.""" | |||
1 | # System library imports |
|
2 | # System library imports | |
2 | from IPython.external.qt import QtCore, QtGui |
|
3 | from IPython.external.qt import QtCore, QtGui | |
3 |
|
4 |
@@ -1,5 +1,6 b'' | |||||
1 |
""" |
|
1 | """A FrontendWidget that emulates the interface of the console IPython. | |
2 | supports the additional functionality provided by the IPython kernel. |
|
2 | ||
|
3 | This supports the additional functionality provided by the IPython kernel. | |||
3 | """ |
|
4 | """ | |
4 |
|
5 | |||
5 | #----------------------------------------------------------------------------- |
|
6 | #----------------------------------------------------------------------------- |
@@ -1,3 +1,5 b'' | |||||
|
1 | """Adapt readline completer interface to make ZMQ request. | |||
|
2 | """ | |||
1 | # -*- coding: utf-8 -*- |
|
3 | # -*- coding: utf-8 -*- | |
2 | import readline |
|
4 | import readline | |
3 | try: |
|
5 | try: |
@@ -1,4 +1,4 b'' | |||||
1 |
""" |
|
1 | """Utilities for checking zmq versions.""" | |
2 | #----------------------------------------------------------------------------- |
|
2 | #----------------------------------------------------------------------------- | |
3 | # Copyright (C) 2013 The IPython Development Team |
|
3 | # Copyright (C) 2013 The IPython Development Team | |
4 | # |
|
4 | # |
General Comments 0
You need to be logged in to leave comments.
Login now