Metadata-Version: 1.1
Name: interlude
Version: 1.2
Summary: Interlude for Doctests provides an Interactive Console.
Home-page: http://github.com/collective/interlude
Author: Jens Klein
Author-email: dev@bluedynamics.com
License: LGPL
Description: Interlude - Interactive Doctests
        ================================
        
        Provides an interactive shell aka console inside your doctest case.
            
        The console looks exact like in a doctest-case and you can copy and paste
        code from the shell into your doctest. It feels as you are in the test case 
        itself. Its not pdb, it's a python shell. 
        
        In your doctest you can invoke the shell at any point by calling::
                
            >>> interact(locals())        
        
        To make your testrunner interlude aware following is needed:
        
        1) import interlude
        
        2) suite = DocFileSuite( ..., globs=dict(interact=interlude.interact), ...) 
        
        License
        =======
        
        `interlude` is copyright 2006-2013 by BlueDynamics Alliance, Klein & Partner KG,
        Austria. It is under the `GNU Lesser General Public License (LGPLv3). 
        <http://opensource.org/licenses/lgpl-3.0.html>`_
        
        - code repository at `github collective <http://github.com/collective/interlude>`_
        
        - written by `Jens Klein <mailto:jens@bluedynamics.com>`_ 
        
        - IPython support contributed by `Alan Justino <http://github.com/alanjds>`_ 
        
        - Upgrade/Bugfixes contributed by `Sune Broendum Woeller <https://github.com/sunew>`_
        
        
        Changes
        =======
        
        1.2
        ---
        
        - make the ipython support work with newer ipython versions. [sunew]
        
        1.1.1
        -----
        
        - fix broken release, include *.rst with MANIFEST.in
        
        1.1
        ---
        
        - IPython support - alanjds, 2010-12-19
        
        1.0
        ---
        
        - initial release
        
Platform: UNKNOWN
Classifier: Development Status :: 6 - Mature
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Topic :: Software Development :: Libraries :: Python Modules
