예제 #1
0
    def new_do_quit(self, arg):

        if hasattr(self, 'old_all_completions'):
            self.shell.Completer.all_completions=self.old_all_completions


        return OldPdb.do_quit(self, arg)
예제 #2
0
파일: Debugger.py 프로젝트: FrankBian/kuma
 def new_do_quit(self, arg):
     
     if hasattr(self, 'old_all_completions'):
         __IPYTHON__.Completer.all_completions=self.old_all_completions
     
     
     return OldPdb.do_quit(self, arg)
예제 #3
0
 def new_do_quit(self, arg):
     
     if hasattr(self, 'old_all_completions'):
         __IPYTHON__.Completer.all_completions=self.old_all_completions
     
     
     return OldPdb.do_quit(self, arg)
예제 #4
0
    def new_do_quit(self, arg):

        if hasattr(self, 'old_all_completions'):
            self.shell.Completer.all_completions=self.old_all_completions


        return OldPdb.do_quit(self, arg)
예제 #5
0
    def new_do_quit(self, arg):

        if hasattr(self, 'old_all_completions'):
            self.shell.Completer.all_completions = self.old_all_completions

        # Pdb sets readline delimiters, so set them back to our own
        self.shell.readline.set_completer_delims(self.shell.readline_delims)

        return OldPdb.do_quit(self, arg)
예제 #6
0
파일: debugger.py 프로젝트: royroy21/T_Kind
    def new_do_quit(self, arg):

        if hasattr(self, "old_all_completions"):
            self.shell.Completer.all_completions = self.old_all_completions

        # Pdb sets readline delimiters, so set them back to our own
        self.shell.readline.set_completer_delims(self.shell.readline_delims)

        return OldPdb.do_quit(self, arg)