mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
fix long line
This commit is contained in:
parent
17820c4f1b
commit
c348cd7518
1 changed files with 2 additions and 1 deletions
|
@ -41,7 +41,8 @@ def gettempdir():
|
|||
filename = os.path.join(dir, testfile)
|
||||
if os.name == 'posix':
|
||||
try:
|
||||
fd = os.open(filename, os.O_RDWR|os.O_CREAT|os.O_EXCL, 0700)
|
||||
fd = os.open(filename,
|
||||
os.O_RDWR | os.O_CREAT | os.O_EXCL, 0700)
|
||||
except OSError:
|
||||
pass
|
||||
else:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue