| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -94,7 +94,6 @@ def parse(args, extras=None, ignore_stdin=False): | |||
| 94 | 94 | ||
| 95 | 95 | if not ignore_stdin and not (sys.stdin.isatty() and sys.stdout.isatty()): | |
| 96 | 96 | interpreter = code.InteractiveInterpreter() | |
| 97 | - print "Entering st.read %s" % sys.stdout.isatty() | ||
| 98 | 97 | interpreter.runsource(sys.stdin.read()) | |
| 99 | 98 | raise SystemExit | |
| 100 | 99 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -12,7 +12,6 @@ def test_exec_dunder_file(self): | |||
| 12 | 12 | f.write( | |
| 13 | 13 | "import sys; sys.stderr.write(__file__); sys.stderr.flush();".encode('ascii')) | |
| 14 | 14 | f.flush() | |
| 15 | - print open(f.name).read() | ||
| 16 | 15 | p = subprocess.Popen(['bpython-curtsies', f.name], stderr=subprocess.PIPE) | |
| 17 | 16 | ||
| 18 | 17 | self.assertEquals(p.stderr.read().strip().decode('ascii'), f.name) | |
| Back | FazBrowse Home | New Git URL |
0 commit comments