Skip to content

Commit 663ea47

Browse files
committed
Remove debug prints.
1 parent b9af67c commit 663ea47

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

bpython/args.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ def parse(args, extras=None, ignore_stdin=False):
9494

9595
if not ignore_stdin and not (sys.stdin.isatty() and sys.stdout.isatty()):
9696
interpreter = code.InteractiveInterpreter()
97-
print "Entering st.read %s" % sys.stdout.isatty()
9897
interpreter.runsource(sys.stdin.read())
9998
raise SystemExit
10099

bpython/test/test_args.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ def test_exec_dunder_file(self):
1212
f.write(
1313
"import sys; sys.stderr.write(__file__); sys.stderr.flush();".encode('ascii'))
1414
f.flush()
15-
print open(f.name).read()
1615
p = subprocess.Popen(['bpython-curtsies', f.name], stderr=subprocess.PIPE)
1716

1817
self.assertEquals(p.stderr.read().strip().decode('ascii'), f.name)

0 commit comments

Comments
 (0)