- Make sure to close the import_failed.map file after the exception

has been raised in order to avoid ResourceWarnings when the
  failing import is part of a try...except block.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:Factory/python39?expand=0&rev=65
This commit is contained in:
Matej Cepl 2021-05-02 17:10:11 +00:00 committed by Git OBS Bridge
parent 40e9d58763
commit ac13143082
2 changed files with 13 additions and 5 deletions

View File

@ -8,7 +8,8 @@ if __spec__:
else:
failed_name = __name__
for line in open(failed_map_path):
with open(failed_map_path) as fd:
for line in fd:
package = line.split(':')[0]
imports = line.split(':')[1]
if failed_name in imports:

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Sun May 2 09:20:06 UTC 2021 - Ben Greiner <code@bnavigator.de>
- Make sure to close the import_failed.map file after the exception
has been raised in order to avoid ResourceWarnings when the
failing import is part of a try...except block.
-------------------------------------------------------------------
Wed Apr 28 16:39:54 UTC 2021 - Matej Cepl <mcepl@suse.com>