mirror of
https://github.com/python/cpython.git
synced 2025-12-15 21:44:50 +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
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
import netrc, os, tempfile, unittest
|
||||
import netrc, os, unittest
|
||||
from test import test_support
|
||||
|
||||
TEST_NETRC = """
|
||||
|
|
@ -17,7 +17,7 @@ default login log2 password pass2
|
|||
|
||||
"""
|
||||
|
||||
temp_filename = tempfile.mktemp()
|
||||
temp_filename = test_support.TESTFN
|
||||
|
||||
class NetrcTestCase(unittest.TestCase):
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue