##// END OF EJS Templates
Merge pull request #4412 from jdfreder/traitlet_notify_fix...
Merge pull request #4412 from jdfreder/traitlet_notify_fix Fix traitlet _notify_trait by-ref issue This fixes a problem with the existing traitlet machinery, where anytrait values get added to the notifiers list every time the _notify_trait function is called. The bug is that each time the traitlet changes, the anytrait callbacks will each be called N times, where N is the number of times the traitlet has been changed (in the current application instance).

File last commit:

r12513:6b68269f
r13151:4788e78a merge
Show More
__init__.py
8 lines | 185 B | text/x-python | PythonLexer
from .base import PostProcessorBase
from .pdf import PDFPostProcessor
# protect against unavailable tornado
try:
from .serve import ServePostProcessor
except ImportError:
pass