Show More
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | """ |
|
4 | 3 | A base class for objects that are configurable. |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | """ |
|
4 | 3 | Tests for IPython.config.configurable |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | """ |
|
4 | 3 | Tests for IPython.config.loader |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | """ |
|
4 | 3 | Autocall capabilities for IPython.core. |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | """ |
|
4 | 3 | A context manager for handling sys.displayhook. |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | """ |
|
4 | 3 | Global exception classes for IPython.core. |
@@ -49,4 +48,4 b' class UsageError(IPythonCoreError):' | |||
|
49 | 48 | |
|
50 | 49 | Something that probably won't warrant a full traceback, but should |
|
51 | 50 | nevertheless interrupt a macro / batch file. |
|
52 | """ No newline at end of file | |
|
51 | """ |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | """ |
|
4 | 3 | This module is *completely* deprecated and should no longer be used for |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | """ |
|
4 | 3 | Paging capabilities for IPython.core |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | """ |
|
4 | 3 | A payload based version of page. |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | """ |
|
4 | 3 | A mixin for :class:`~IPython.core.application.Application` classes that |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | """ |
|
4 | 3 | Simple utility for splitting user input. |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | |
|
4 | 3 | """Magic command interface for interactive parallel work.""" |
@@ -1,5 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | ||
|
3 | 1 |
|
|
4 | 2 | # This file is adapted from a paramiko demo, and thus licensed under LGPL 2.1. |
|
5 | 3 | # Original Copyright (C) 2003-2007 Robey Pointer <robeypointer@gmail.com> |
@@ -17,7 +15,7 b'' | |||
|
17 | 15 | # |
|
18 | 16 | # You should have received a copy of the GNU Lesser General Public License |
|
19 | 17 | # along with Paramiko; if not, write to the Free Software Foundation, Inc., |
|
20 |
# 5 |
|
|
18 | # 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA. | |
|
21 | 19 | |
|
22 | 20 | """ |
|
23 | 21 | Sample script showing how to do local port forwarding over paramiko. |
@@ -87,4 +85,4 b' def forward_tunnel(local_port, remote_host, remote_port, transport):' | |||
|
87 | 85 | ForwardServer(('127.0.0.1', local_port), SubHander).serve_forever() |
|
88 | 86 | |
|
89 | 87 | |
|
90 | __all__ = ['forward_tunnel'] No newline at end of file | |
|
88 | __all__ = ['forward_tunnel'] |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | """ |
|
4 | 3 | Extra capabilities for IPython |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | """ |
|
4 | 3 | Support for creating GUI apps and starting event loops. |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | """ |
|
4 | 3 | Inputhook management for GUI event loop integration. |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | """ |
|
4 | 3 | Enable pygtk to be used interacive by setting PyOS_InputHook. |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | |
|
4 | 3 | def test_import_backgroundjobs(): |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | """ |
|
4 | 3 | The Base Application class for IPython.parallel apps |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | """ |
|
4 | 3 | Facilities for launching IPython processes asynchronously. |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | A simple logger object that consolidates messages incoming from ipcluster processes. |
|
4 | 3 |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | |
|
4 | 3 | This is necessary because select on Windows only supports sockets, not FDs. |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | """ |
|
4 | 3 | Job and task components for writing .xml files that the Windows HPC Server |
|
1 | NO CONTENT: modified file chmod 100644 => 100755 |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | This is the master object that handles connections from engines and clients, |
|
4 | 3 | and monitors traffic through the various queues. |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | it handles registration, etc. and launches a kernel |
|
4 | 3 | connected to the Controller's Schedulers. |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | Kernel adapted from kernel.py to use ZMQ Streams |
|
4 | 3 |
@@ -1,6 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | ||
|
3 | ||
|
4 | 1 |
|
|
5 | 2 | Add %global magic for GNU Global usage. |
|
6 | 3 |
@@ -1,5 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | ||
|
3 | 1 |
|
|
4 | 2 | |
|
5 | 3 | from IPython.core import ipapi |
@@ -65,4 +63,3 b' def render(tmpl):' | |||
|
65 | 63 | return res |
|
66 | 64 | |
|
67 | 65 | ip.push('render') |
|
68 | No newline at end of file |
@@ -1,5 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | ||
|
3 | 1 |
|
|
4 | 2 | ip = ipapi.get() |
|
5 | 3 |
|
1 | NO CONTENT: modified file chmod 100644 => 100755 |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | """A dict subclass that supports attribute style access. |
|
4 | 3 |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | """ |
|
4 | 3 | The IPython Core Notification Center. |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | """ |
|
4 | 3 | Context managers for adding things to sys.path temporarily. |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | """ |
|
4 | 3 | Tests for IPython.utils.traitlets. |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | """ |
|
4 | 3 | A lightweight Traits like module. |
|
1 | NO CONTENT: modified file chmod 100644 => 100755 |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | |
|
4 | 3 | Authors |
@@ -1,4 +1,3 b'' | |||
|
1 | #!/usr/bin/env python | |
|
2 | 1 |
|
|
3 | 2 | IPython. The Session object supports serialization, HMAC signatures, and |
|
4 | 3 | metadata on messages. |
|
1 | NO CONTENT: modified file chmod 100755 => 100644 |
General Comments 0
You need to be logged in to leave comments.
Login now