mirror of
https://github.com/python/cpython.git
synced 2025-10-28 20:25:04 +00:00
Always close files in distutils code and tests (#10252).
This commit is contained in:
parent
afb078dd26
commit
bee5cef7db
24 changed files with 261 additions and 171 deletions
|
|
@ -76,7 +76,11 @@ def upload_file(self, command, pyversion, filename):
|
|||
|
||||
# Fill in the data - send all the meta-data in case we need to
|
||||
# register a new release
|
||||
content = open(filename,'rb').read()
|
||||
f = open(filename,'rb')
|
||||
try:
|
||||
content = f.read()
|
||||
finally:
|
||||
f.close()
|
||||
meta = self.distribution.metadata
|
||||
data = {
|
||||
# action
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue