@@ -210,7 +210,7 @@ class PrefilterManager(Configurable):
210210 """
211211
212212 multi_line_specials = CBool (True , config = True )
213- shell = Instance ('IPython.core.iplib .InteractiveShellABC' )
213+ shell = Instance ('IPython.core.interactiveshell .InteractiveShellABC' )
214214
215215 def __init__ (self , shell = None , config = None ):
216216 super (PrefilterManager , self ).__init__ (shell = shell , config = config )
@@ -453,7 +453,7 @@ class PrefilterTransformer(Configurable):
453453 priority = Int (100 , config = True )
454454 # Transformers don't currently use shell or prefilter_manager, but as we
455455 # move away from checkers and handlers, they will need them.
456- shell = Instance ('IPython.core.iplib .InteractiveShellABC' )
456+ shell = Instance ('IPython.core.interactiveshell .InteractiveShellABC' )
457457 prefilter_manager = Instance ('IPython.core.prefilter.PrefilterManager' )
458458 enabled = Bool (True , config = True )
459459
@@ -561,7 +561,7 @@ class PrefilterChecker(Configurable):
561561 """Inspect an input line and return a handler for that line."""
562562
563563 priority = Int (100 , config = True )
564- shell = Instance ('IPython.core.iplib .InteractiveShellABC' )
564+ shell = Instance ('IPython.core.interactiveshell .InteractiveShellABC' )
565565 prefilter_manager = Instance ('IPython.core.prefilter.PrefilterManager' )
566566 enabled = Bool (True , config = True )
567567
@@ -754,7 +754,7 @@ class PrefilterHandler(Configurable):
754754
755755 handler_name = Str ('normal' )
756756 esc_strings = List ([])
757- shell = Instance ('IPython.core.iplib .InteractiveShellABC' )
757+ shell = Instance ('IPython.core.interactiveshell .InteractiveShellABC' )
758758 prefilter_manager = Instance ('IPython.core.prefilter.PrefilterManager' )
759759
760760 def __init__ (self , shell = None , prefilter_manager = None , config = None ):
0 commit comments