Kaydet (Commit) c2dd6801 authored tarafından Berker Peksag's avatar Berker Peksag

Issue #23983: Update the pty module example.

Changes:

* Fixed a ResourceWarning warning
* Used argparse instead of getopt
üst ea6d5592
...@@ -58,40 +58,32 @@ The following program acts like the Unix command :manpage:`script(1)`, using a ...@@ -58,40 +58,32 @@ The following program acts like the Unix command :manpage:`script(1)`, using a
pseudo-terminal to record all input and output of a terminal session in a pseudo-terminal to record all input and output of a terminal session in a
"typescript". :: "typescript". ::
import sys, os, time, getopt import argparse
import pty import os
import pty
mode = 'wb' import sys
shell = 'sh' import time
filename = 'typescript'
if 'SHELL' in os.environ: parser = argparse.ArgumentParser()
shell = os.environ['SHELL'] parser.add_argument('-a', dest='append', action='store_true')
parser.add_argument('-p', dest='use_python', action='store_true')
try: parser.add_argument('filename', nargs='?', default='typescript')
opts, args = getopt.getopt(sys.argv[1:], 'ap') options = parser.parse_args()
except getopt.error as msg:
print('%s: %s' % (sys.argv[0], msg)) shell = sys.executable if options.use_python else os.environ.get('SHELL', 'sh')
sys.exit(2) filename = options.filename
mode = 'ab' if options.append else 'wb'
for opt, arg in opts:
# option -a: append to typescript file with open(filename, mode) as script:
if opt == '-a': def read(fd):
mode = 'ab' data = os.read(fd, 1024)
# option -p: use a Python shell as the terminal command script.write(data)
elif opt == '-p': return data
shell = sys.executable
if args: print('Script started, file is', filename)
filename = args[0] script.write(('Script started on %s\n' % time.asctime()).encode())
script = open(filename, mode) pty.spawn(shell, read)
def read(fd): script.write(('Script done on %s\n' % time.asctime()).encode())
data = os.read(fd, 1024) print('Script done, file is', filename)
script.write(data)
return data
sys.stdout.write('Script started, file is %s\n' % filename)
script.write(('Script started on %s\n' % time.asctime()).encode())
pty.spawn(shell, read)
script.write(('Script done on %s\n' % time.asctime()).encode())
sys.stdout.write('Script done, file is %s\n' % filename)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment