##// END OF EJS Templates
Standardise some module docstring first lines
Thomas Kluyver -
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 6 import abc
2 7 import functools
3 8 import re
@@ -1,6 +1,6 b''
1 1 # -*- coding: utf-8 -*-
2 2 """
3 ultratb.py -- Spice up your tracebacks!
3 Verbose and colourful traceback formatting.
4 4
5 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 3 import sys
2 4
3 5 from IPython.core.displayhook import DisplayHook
@@ -1,4 +1,4 b''
1 """some generic utilities for dealing with classes, urls, and serialization
1 """Some generic utilities for dealing with classes, urls, and serialization.
2 2
3 3 Authors:
4 4
@@ -1,4 +1,4 b''
1 """a navigable completer for the qtconsole"""
1 """A navigable completer for the qtconsole"""
2 2 # coding : utf-8
3 3 #-----------------------------------------------------------------------------
4 4 # Copyright (c) 2012, IPython Development Team.$
@@ -1,4 +1,4 b''
1 """a simple completer for the qtconsole"""
1 """A simple completer for the qtconsole"""
2 2 #-----------------------------------------------------------------------------
3 3 # Copyright (c) 2012, IPython Development Team.$
4 4 #
@@ -1,3 +1,4 b''
1 """A dropdown completer widget for the qtconsole."""
1 2 # System library imports
2 3 from IPython.external.qt import QtCore, QtGui
3 4
@@ -1,5 +1,6 b''
1 """ A FrontendWidget that emulates the interface of the console IPython and
2 supports the additional functionality provided by the IPython kernel.
1 """A FrontendWidget that emulates the interface of the console IPython.
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 3 # -*- coding: utf-8 -*-
2 4 import readline
3 5 try:
@@ -1,4 +1,4 b''
1 """utilities for checking zmq versions"""
1 """Utilities for checking zmq versions."""
2 2 #-----------------------------------------------------------------------------
3 3 # Copyright (C) 2013 The IPython Development Team
4 4 #
General Comments 0
You need to be logged in to leave comments. Login now