diff options
| author | Jeff Quast <contact@jeffquast.com> | 2015-09-20 18:17:09 -0700 |
|---|---|---|
| committer | Jeff Quast <contact@jeffquast.com> | 2015-09-20 18:17:09 -0700 |
| commit | b168977c9992c460aae7c650b06bd90ee4451f50 (patch) | |
| tree | 1352c99774d6efb334e039a8e8ec5905fa6413e2 /tests/interact_unicode.py | |
| parent | 8e5163c597348465cd0892639250656ddfe814bd (diff) | |
| parent | f5993888e092bd8cecc98ac9558700d4fe8624cf (diff) | |
| download | pexpect-docs-revision-4.tar.gz | |
Merge remote-tracking branch 'origin/master' into docs-revision-4docs-revision-4
Diffstat (limited to 'tests/interact_unicode.py')
| -rw-r--r-- | tests/interact_unicode.py | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/interact_unicode.py b/tests/interact_unicode.py deleted file mode 100644 index f4c1f55..0000000 --- a/tests/interact_unicode.py +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env python -''' -Just like interact.py, but using spawnu instead of spawn -''' -try: - # This allows coverage to measure code run in this process - import coverage - coverage.process_startup() -except ImportError: - pass - -from utils import no_coverage_env -import pexpect -import sys - - -def main(): - p = pexpect.spawnu(sys.executable + ' echo_w_prompt.py', - env=no_coverage_env()) - p.interact() - print("Escaped interact") - -if __name__ == '__main__': - main() |
