mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Massive changes from SF 589982 (tempfile.py rewrite, by Zack
Weinberg). This changes all uses of deprecated tempfile functions to the recommended ones.
This commit is contained in:
parent
830a5151c1
commit
3b0a3293c3
31 changed files with 134 additions and 149 deletions
|
@ -1203,8 +1203,8 @@ def getpager():
|
|||
return lambda text: pipepager(text, 'less')
|
||||
|
||||
import tempfile
|
||||
filename = tempfile.mktemp()
|
||||
open(filename, 'w').close()
|
||||
(fd, filename) = tempfile.mkstemp()
|
||||
os.close(fd)
|
||||
try:
|
||||
if hasattr(os, 'system') and os.system('more %s' % filename) == 0:
|
||||
return lambda text: pipepager(text, 'more')
|
||||
|
@ -1229,8 +1229,8 @@ def pipepager(text, cmd):
|
|||
def tempfilepager(text, cmd):
|
||||
"""Page through text by invoking a program on a temporary file."""
|
||||
import tempfile
|
||||
filename = tempfile.mktemp()
|
||||
file = open(filename, 'w')
|
||||
(fd, filename) = tempfile.mkstemp()
|
||||
file = os.fdopen(fd, 'w')
|
||||
file.write(text)
|
||||
file.close()
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue