##// END OF EJS Templates
update recently changed modules with Authors in docstring
MinRK -
Show More
@@ -5,6 +5,7 b' A base class for a configurable application.'
5 5 Authors:
6 6
7 7 * Brian Granger
8 * Min RK
8 9 """
9 10
10 11 #-----------------------------------------------------------------------------
@@ -7,10 +7,11 b' Authors:'
7 7
8 8 * Brian Granger
9 9 * Fernando Perez
10 * Min RK
10 11 """
11 12
12 13 #-----------------------------------------------------------------------------
13 # Copyright (C) 2008-2010 The IPython Development Team
14 # Copyright (C) 2008-2011 The IPython Development Team
14 15 #
15 16 # Distributed under the terms of the BSD License. The full license is in
16 17 # the file COPYING, distributed as part of this software.
@@ -4,10 +4,11 b' Authors'
4 4 -------
5 5 * Brian Granger
6 6 * Fernando Perez
7 * Min RK
7 8 """
8 9
9 10 #-----------------------------------------------------------------------------
10 # Copyright (C) 2008-2009 The IPython Development Team
11 # Copyright (C) 2008-2011 The IPython Development Team
11 12 #
12 13 # Distributed under the terms of the BSD License. The full license is in
13 14 # the file COPYING, distributed as part of this software.
@@ -12,6 +12,7 b' Authors:'
12 12
13 13 * Brian Granger
14 14 * Fernando Perez
15 * Min RK
15 16
16 17 Notes
17 18 -----
@@ -1,4 +1,9 b''
1 """The IPython ZMQ-based parallel computing interface."""
1 """The IPython ZMQ-based parallel computing interface.
2
3 Authors:
4
5 * MinRK
6 """
2 7 #-----------------------------------------------------------------------------
3 8 # Copyright (C) 2011 The IPython Development Team
4 9 #
@@ -1,11 +1,17 b''
1 1 #!/usr/bin/env python
2 2 # encoding: utf-8
3 3 """
4 The IPython cluster directory
4 The Base Application class for IPython.parallel apps
5
6 Authors:
7
8 * Brian Granger
9 * Min RK
10
5 11 """
6 12
7 13 #-----------------------------------------------------------------------------
8 # Copyright (C) 2008-2009 The IPython Development Team
14 # Copyright (C) 2008-2011 The IPython Development Team
9 15 #
10 16 # Distributed under the terms of the BSD License. The full license is in
11 17 # the file COPYING, distributed as part of this software.
@@ -2,10 +2,16 b''
2 2 # encoding: utf-8
3 3 """
4 4 The ipcluster application.
5
6 Authors:
7
8 * Brian Granger
9 * MinRK
10
5 11 """
6 12
7 13 #-----------------------------------------------------------------------------
8 # Copyright (C) 2008-2009 The IPython Development Team
14 # Copyright (C) 2008-2011 The IPython Development Team
9 15 #
10 16 # Distributed under the terms of the BSD License. The full license is in
11 17 # the file COPYING, distributed as part of this software.
@@ -2,10 +2,16 b''
2 2 # encoding: utf-8
3 3 """
4 4 The IPython controller application.
5
6 Authors:
7
8 * Brian Granger
9 * MinRK
10
5 11 """
6 12
7 13 #-----------------------------------------------------------------------------
8 # Copyright (C) 2008-2009 The IPython Development Team
14 # Copyright (C) 2008-2011 The IPython Development Team
9 15 #
10 16 # Distributed under the terms of the BSD License. The full license is in
11 17 # the file COPYING, distributed as part of this software.
@@ -2,10 +2,16 b''
2 2 # encoding: utf-8
3 3 """
4 4 The IPython engine application
5
6 Authors:
7
8 * Brian Granger
9 * MinRK
10
5 11 """
6 12
7 13 #-----------------------------------------------------------------------------
8 # Copyright (C) 2008-2009 The IPython Development Team
14 # Copyright (C) 2008-2011 The IPython Development Team
9 15 #
10 16 # Distributed under the terms of the BSD License. The full license is in
11 17 # the file COPYING, distributed as part of this software.
@@ -2,6 +2,11 b''
2 2 # encoding: utf-8
3 3 """
4 4 A simple IPython logger application
5
6 Authors:
7
8 * MinRK
9
5 10 """
6 11
7 12 #-----------------------------------------------------------------------------
@@ -2,10 +2,15 b''
2 2 # encoding: utf-8
3 3 """
4 4 Facilities for launching IPython processes asynchronously.
5
6 Authors:
7
8 * Brian Granger
9 * MinRK
5 10 """
6 11
7 12 #-----------------------------------------------------------------------------
8 # Copyright (C) 2008-2009 The IPython Development Team
13 # Copyright (C) 2008-2011 The IPython Development Team
9 14 #
10 15 # Distributed under the terms of the BSD License. The full license is in
11 16 # the file COPYING, distributed as part of this software.
@@ -1,5 +1,12 b''
1 1 #!/usr/bin/env python
2 """A simple logger object that consolidates messages incoming from ipcluster processes."""
2 """
3 A simple logger object that consolidates messages incoming from ipcluster processes.
4
5 Authors:
6
7 * MinRK
8
9 """
3 10
4 11 #-----------------------------------------------------------------------------
5 12 # Copyright (C) 2011 The IPython Development Team
@@ -1,7 +1,13 b''
1 1 #!/usr/bin/env python
2 2 """Utility for forwarding file read events over a zmq socket.
3 3
4 This is necessary because select on Windows only supports"""
4 This is necessary because select on Windows only supports
5
6 Authors:
7
8 * MinRK
9
10 """
5 11
6 12 #-----------------------------------------------------------------------------
7 13 # Copyright (C) 2011 The IPython Development Team
@@ -3,10 +3,16 b''
3 3 """
4 4 Job and task components for writing .xml files that the Windows HPC Server
5 5 2008 can use to start jobs.
6
7 Authors:
8
9 * Brian Granger
10 * MinRK
11
6 12 """
7 13
8 14 #-----------------------------------------------------------------------------
9 # Copyright (C) 2008-2009 The IPython Development Team
15 # Copyright (C) 2008-2011 The IPython Development Team
10 16 #
11 17 # Distributed under the terms of the BSD License. The full license is in
12 18 # the file COPYING, distributed as part of this software.
@@ -1,4 +1,9 b''
1 """AsyncResult objects for the client"""
1 """AsyncResult objects for the client
2
3 Authors:
4
5 * MinRK
6 """
2 7 #-----------------------------------------------------------------------------
3 8 # Copyright (C) 2010-2011 The IPython Development Team
4 9 #
@@ -1,6 +1,11 b''
1 """A semi-synchronous Client for the ZMQ cluster"""
1 """A semi-synchronous Client for the ZMQ cluster
2
3 Authors:
4
5 * MinRK
6 """
2 7 #-----------------------------------------------------------------------------
3 # Copyright (C) 2010 The IPython Development Team
8 # Copyright (C) 2010-2011 The IPython Development Team
4 9 #
5 10 # Distributed under the terms of the BSD License. The full license is in
6 11 # the file COPYING, distributed as part of this software.
@@ -4,12 +4,19 b''
4 4
5 5 Scattering consists of partitioning a sequence and sending the various
6 6 pieces to individual nodes in a cluster.
7
8
9 Authors:
10
11 * Brian Granger
12 * MinRK
13
7 14 """
8 15
9 16 __docformat__ = "restructuredtext en"
10 17
11 18 #-------------------------------------------------------------------------------
12 # Copyright (C) 2008 The IPython Development Team
19 # Copyright (C) 2008-2011 The IPython Development Team
13 20 #
14 21 # Distributed under the terms of the BSD License. The full license is in
15 22 # the file COPYING, distributed as part of this software.
@@ -1,6 +1,12 b''
1 """Remote Functions and decorators for Views."""
1 """Remote Functions and decorators for Views.
2
3 Authors:
4
5 * Brian Granger
6 * Min RK
7 """
2 8 #-----------------------------------------------------------------------------
3 # Copyright (C) 2010 The IPython Development Team
9 # Copyright (C) 2010-2011 The IPython Development Team
4 10 #
5 11 # Distributed under the terms of the BSD License. The full license is in
6 12 # the file COPYING, distributed as part of this software.
@@ -1,6 +1,11 b''
1 """Views of remote engines."""
1 """Views of remote engines.
2
3 Authors:
4
5 * Min RK
6 """
2 7 #-----------------------------------------------------------------------------
3 # Copyright (C) 2010 The IPython Development Team
8 # Copyright (C) 2010-2011 The IPython Development Team
4 9 #
5 10 # Distributed under the terms of the BSD License. The full license is in
6 11 # the file COPYING, distributed as part of this software.
@@ -1,4 +1,9 b''
1 """Dependency utilities"""
1 """Dependency utilities
2
3 Authors:
4
5 * Min RK
6 """
2 7 #-----------------------------------------------------------------------------
3 8 # Copyright (C) 2010-2011 The IPython Development Team
4 9 #
@@ -1,6 +1,11 b''
1 1 """A Task logger that presents our DB interface,
2 2 but exists entirely in memory and implemented with dicts.
3 3
4 Authors:
5
6 * Min RK
7
8
4 9 TaskRecords are dicts of the form:
5 10 {
6 11 'msg_id' : str(uuid),
@@ -35,7 +40,7 b' We support a subset of mongodb operators:'
35 40 $lt,$gt,$lte,$gte,$ne,$in,$nin,$all,$mod,$exists
36 41 """
37 42 #-----------------------------------------------------------------------------
38 # Copyright (C) 2010 The IPython Development Team
43 # Copyright (C) 2010-2011 The IPython Development Team
39 44 #
40 45 # Distributed under the terms of the BSD License. The full license is in
41 46 # the file COPYING, distributed as part of this software.
@@ -2,6 +2,10 b''
2 2 """
3 3 A multi-heart Heartbeat system using PUB and XREP sockets. pings are sent out on the PUB,
4 4 and hearts are tracked based on their XREQ identities.
5
6 Authors:
7
8 * Min RK
5 9 """
6 10 #-----------------------------------------------------------------------------
7 11 # Copyright (C) 2010-2011 The IPython Development Team
@@ -2,6 +2,10 b''
2 2 """The IPython Controller Hub with 0MQ
3 3 This is the master object that handles connections from engines and clients,
4 4 and monitors traffic through the various queues.
5
6 Authors:
7
8 * Min RK
5 9 """
6 10 #-----------------------------------------------------------------------------
7 11 # Copyright (C) 2010 The IPython Development Team
@@ -1,6 +1,11 b''
1 """A TaskRecord backend using mongodb"""
1 """A TaskRecord backend using mongodb
2
3 Authors:
4
5 * Min RK
6 """
2 7 #-----------------------------------------------------------------------------
3 # Copyright (C) 2010 The IPython Development Team
8 # Copyright (C) 2010-2011 The IPython Development Team
4 9 #
5 10 # Distributed under the terms of the BSD License. The full license is in
6 11 # the file COPYING, distributed as part of this software.
@@ -3,6 +3,10 b''
3 3 The Pure ZMQ scheduler does not allow routing schemes other than LRU,
4 4 nor does it check msg_id DAG dependencies. For those, a slightly slower
5 5 Python Scheduler exists.
6
7 Authors:
8
9 * Min RK
6 10 """
7 11 #-----------------------------------------------------------------------------
8 12 # Copyright (C) 2010-2011 The IPython Development Team
@@ -1,4 +1,9 b''
1 """A TaskRecord backend using sqlite3"""
1 """A TaskRecord backend using sqlite3
2
3 Authors:
4
5 * Min RK
6 """
2 7 #-----------------------------------------------------------------------------
3 8 # Copyright (C) 2011 The IPython Development Team
4 9 #
@@ -2,6 +2,10 b''
2 2 """A simple engine that talks to a controller over 0MQ.
3 3 it handles registration, etc. and launches a kernel
4 4 connected to the Controller's Schedulers.
5
6 Authors:
7
8 * Min RK
5 9 """
6 10 #-----------------------------------------------------------------------------
7 11 # Copyright (C) 2010-2011 The IPython Development Team
@@ -1,4 +1,9 b''
1 """KernelStarter class that intercepts Control Queue messages, and handles process management."""
1 """KernelStarter class that intercepts Control Queue messages, and handles process management.
2
3 Authors:
4
5 * Min RK
6 """
2 7 #-----------------------------------------------------------------------------
3 8 # Copyright (C) 2010-2011 The IPython Development Team
4 9 #
@@ -1,6 +1,13 b''
1 1 #!/usr/bin/env python
2 2 """
3 3 Kernel adapted from kernel.py to use ZMQ Streams
4
5 Authors:
6
7 * Min RK
8 * Brian Granger
9 * Fernando Perez
10 * Evan Patterson
4 11 """
5 12 #-----------------------------------------------------------------------------
6 13 # Copyright (C) 2010-2011 The IPython Development Team
@@ -1,6 +1,12 b''
1 1 # encoding: utf-8
2 2
3 """Classes and functions for kernel related errors and exceptions."""
3 """Classes and functions for kernel related errors and exceptions.
4
5 Authors:
6
7 * Brian Granger
8 * Min RK
9 """
4 10 from __future__ import print_function
5 11
6 12 import sys
@@ -12,7 +18,7 b' __docformat__ = "restructuredtext en"'
12 18 __test__ = {}
13 19
14 20 #-------------------------------------------------------------------------------
15 # Copyright (C) 2008 The IPython Development Team
21 # Copyright (C) 2008-2011 The IPython Development Team
16 22 #
17 23 # Distributed under the terms of the BSD License. The full license is in
18 24 # the file COPYING, distributed as part of this software.
@@ -1,4 +1,9 b''
1 """Base config factories."""
1 """Base config factories.
2
3 Authors:
4
5 * Min RK
6 """
2 7
3 8 #-----------------------------------------------------------------------------
4 9 # Copyright (C) 2010-2011 The IPython Development Team
@@ -1,4 +1,9 b''
1 """base class for parallel client tests"""
1 """base class for parallel client tests
2
3 Authors:
4
5 * Min RK
6 """
2 7
3 8 #-------------------------------------------------------------------------------
4 9 # Copyright (C) 2011 The IPython Development Team
@@ -1,4 +1,9 b''
1 """Tests for asyncresult.py"""
1 """Tests for asyncresult.py
2
3 Authors:
4
5 * Min RK
6 """
2 7
3 8 #-------------------------------------------------------------------------------
4 9 # Copyright (C) 2011 The IPython Development Team
@@ -1,4 +1,9 b''
1 """Tests for parallel client.py"""
1 """Tests for parallel client.py
2
3 Authors:
4
5 * Min RK
6 """
2 7
3 8 #-------------------------------------------------------------------------------
4 9 # Copyright (C) 2011 The IPython Development Team
@@ -1,4 +1,9 b''
1 """Tests for db backends"""
1 """Tests for db backends
2
3 Authors:
4
5 * Min RK
6 """
2 7
3 8 #-------------------------------------------------------------------------------
4 9 # Copyright (C) 2011 The IPython Development Team
@@ -1,4 +1,9 b''
1 """Tests for dependency.py"""
1 """Tests for dependency.py
2
3 Authors:
4
5 * Min RK
6 """
2 7
3 8 __docformat__ = "restructuredtext en"
4 9
@@ -1,4 +1,9 b''
1 """test LoadBalancedView objects"""
1 """test LoadBalancedView objects
2
3 Authors:
4
5 * Min RK
6 """
2 7 # -*- coding: utf-8 -*-
3 8 #-------------------------------------------------------------------------------
4 9 # Copyright (C) 2011 The IPython Development Team
@@ -1,4 +1,9 b''
1 """Tests for mongodb backend"""
1 """Tests for mongodb backend
2
3 Authors:
4
5 * Min RK
6 """
2 7
3 8 #-------------------------------------------------------------------------------
4 9 # Copyright (C) 2011 The IPython Development Team
@@ -1,4 +1,9 b''
1 """test serialization with newserialized"""
1 """test serialization with newserialized
2
3 Authors:
4
5 * Min RK
6 """
2 7
3 8 #-------------------------------------------------------------------------------
4 9 # Copyright (C) 2011 The IPython Development Team
@@ -1,4 +1,9 b''
1 """test View objects"""
1 """test View objects
2
3 Authors:
4
5 * Min RK
6 """
2 7 # -*- coding: utf-8 -*-
3 8 #-------------------------------------------------------------------------------
4 9 # Copyright (C) 2011 The IPython Development Team
@@ -1,4 +1,9 b''
1 """some generic utilities for dealing with classes, urls, and serialization"""
1 """some generic utilities for dealing with classes, urls, and serialization
2
3 Authors:
4
5 * Min RK
6 """
2 7 #-----------------------------------------------------------------------------
3 8 # Copyright (C) 2010-2011 The IPython Development Team
4 9 #
@@ -7,6 +7,12 b' Also defined here are utilities for working with Sessions:'
7 7 * A SessionFactory to be used as a base class for configurables that work with
8 8 Sessions.
9 9 * A Message object for convenience that allows attribute-access to the msg dict.
10
11 Authors:
12
13 * Min RK
14 * Brian Granger
15 * Fernando Perez
10 16 """
11 17 #-----------------------------------------------------------------------------
12 18 # Copyright (C) 2010-2011 The IPython Development Team
General Comments 0
You need to be logged in to leave comments. Login now