Removing unecessary import of pdb, can cause problems #1

This commit is contained in:
Jrgen Stenarson
2012-06-27 20:39:33 +02:00
parent c5c023608f
commit 7acedc9939
4 changed files with 1 additions and 4 deletions
-1
View File
@@ -249,7 +249,6 @@ class LineHistory(object):
return q
if __name__ == "__main__":
import pdb
q = LineHistory()
r = LineHistory()
s = LineHistory()
-1
View File
@@ -32,7 +32,6 @@ if in_ironpython:#ironpython does not provide a prompt string to readline
default_prompt = ">>> "
else:
default_prompt = ""
import pdb
class MockConsoleError(Exception):
-1
View File
@@ -9,7 +9,6 @@
from __future__ import print_function, unicode_literals, absolute_import
import sys, unittest
import pdb
sys.path.insert(0, '../..')
from pyreadline.modes.emacs import *
from pyreadline import keysyms
+1 -1
View File
@@ -7,7 +7,7 @@
#*****************************************************************************
from __future__ import print_function, unicode_literals, absolute_import
import sys, unittest,pdb
import sys, unittest
sys.path.insert(0, '../..')
from pyreadline.modes.vi import *
from pyreadline import keysyms