Re: [PATCH 0/1] git-p4: auto-delete named temporary file

2019-08-01 Thread Andrey
01.08.2019, 17:39, "Philip McGraw via GitGitGadget" : > Take new approach using the NamedTemporaryFile() file-like object as input > to the ZipFile() which auto-deletes after implicit close leaving with scope. > > Original code produced double-open problems on Windows platform from using > alrea

[PATCH 0/1] git-p4: auto-delete named temporary file

2019-08-01 Thread Philip McGraw via GitGitGadget
Take new approach using the NamedTemporaryFile() file-like object as input to the ZipFile() which auto-deletes after implicit close leaving with scope. Original code produced double-open problems on Windows platform from using already open NamedTemporaryFile() generated filename instead of object.