##// END OF EJS Templates
Merge pull request #3929 from minrk/rename-cr...
Merge pull request #3929 from minrk/rename-cr swallow enter event in rename dialog avoids adding newline in cell after dialog is closed. closes #3926

File last commit:

r11753:cc54e59f
r12047:3879f001 merge
Show More
base.py
35 lines | 1.0 KiB | text/x-python | PythonLexer
"""
Basic post processor
"""
#-----------------------------------------------------------------------------
#Copyright (c) 2013, the IPython Development Team.
#
#Distributed under the terms of the Modified BSD License.
#
#The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
from ..utils.base import NbConvertBase
#-----------------------------------------------------------------------------
# Classes
#-----------------------------------------------------------------------------
class PostProcessorBase(NbConvertBase):
def __call__(self, input):
"""
See def call() ...
"""
self.call(input)
def call(self, input):
"""
Post-process output from a writer.
"""
raise NotImplementedError('call')