Show More
@@ -347,9 +347,13 b' class transaction(util.transactional):' | |||
|
347 | 347 | files.append(vfs(name, 'w', atomictemp=True, |
|
348 | 348 | checkambig=checkambig)) |
|
349 | 349 | genfunc(*files) |
|
350 | for f in files: | |
|
351 | f.close() | |
|
352 | # skip discard() loop since we're sure no open file remains | |
|
353 | del files[:] | |
|
350 | 354 | finally: |
|
351 | 355 | for f in files: |
|
352 |
f. |
|
|
356 | f.discard() | |
|
353 | 357 | return any |
|
354 | 358 | |
|
355 | 359 | @active |
General Comments 0
You need to be logged in to leave comments.
Login now