Skip to content

Commit 74382d4

Browse files
remove prints from tests
1 parent 7fe3a60 commit 74382d4

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

bpython/test/test_preprocess.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121

2222
def get_fodder_source(test_name):
2323
pattern = r'#StartTest-%s\n(.*?)#EndTest' % (test_name,)
24-
print repr(pattern)
2524
orig, xformed = [re.search(pattern, inspect.getsource(module), re.DOTALL)
2625
for module in [original, processed]]
2726

@@ -44,7 +43,6 @@ def test_indent_empty_lines_nops(self):
4443
self.assertEqual(indent_empty('a\n b\nc\n'), 'a\n b\nc\n')
4544

4645
def assertShowWhitespaceEqual(self, a, b):
47-
print a
4846
self.assertEqual(
4947
a, b,
5048
''.join(difflib.context_diff(a.replace(' ', '~').splitlines(True),

0 commit comments

Comments
 (0)