[issue38162] Import Long Load

2019-09-13 Thread Evgeniy Mischuk
New submission from Evgeniy Mischuk : for in TMP_MAX dont break and always continue -- components: Windows messages: 352365 nosy: Evgeniy Mischuk, paul.moore, steve.dower, tim.golden, zach.ware priority: normal pull_requests: 15733 severity: normal status: open title: Import Long Load t

[issue38162] Import Long Load

2019-09-13 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +15736 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16120 ___ Python tracker ___ __

[issue38162] Import Long Load

2019-09-16 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: I close the issue because there is no discussion :/ -- components: +Unicode -Windows nosy: +ezio.melotti, matrixise, vstinner resolution: -> rejected stage: patch review -> resolved status: open -> closed ___ Pytho

[issue38162] Import Long Load

2019-09-16 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: and related to 3.6 (security) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue38162] Import Long Load

2019-09-16 Thread STINNER Victor
STINNER Victor added the comment: tempfile uses a low number of random bits per filename, so collision is "likely". Two Python processes might attempt to create the same temporary file "at the same time". Maybe not two processes, but two Python threads. Rather than writing complex locking mec