[issue35024] Incorrect logging in importlib when '.pyc' file creation fails

2020-08-18 Thread Brett Cannon
Brett Cannon added the comment: It looks like it! Thanks, Irit! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue35024] Incorrect logging in importlib when '.pyc' file creation fails

2020-08-17 Thread Irit Katriel
Irit Katriel added the comment: This seems resolved, can it be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs

[issue35024] Incorrect logging in importlib when '.pyc' file creation fails

2018-10-26 Thread miss-islington
miss-islington added the comment: New changeset 9e14e49f13ef1a726f31efe6689285463332db6e by Miss Islington (bot) (Quentin Agren) in branch 'master': bpo-35024: Remove redundant and possibly incorrect verbose message after writing '.pyc' (GH-9998) https://github.com/python/cpython/commit/9e14

[issue35024] Incorrect logging in importlib when '.pyc' file creation fails

2018-10-19 Thread Quentin Agren
Change by Quentin Agren : -- keywords: +patch pull_requests: +9340 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-li

[issue35024] Incorrect logging in importlib when '.pyc' file creation fails

2018-10-19 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue35024] Incorrect logging in importlib when '.pyc' file creation fails

2018-10-19 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +pablogsal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue35024] Incorrect logging in importlib when '.pyc' file creation fails

2018-10-18 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +brett.cannon, eric.snow, ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue35024] Incorrect logging in importlib when '.pyc' file creation fails

2018-10-18 Thread Quentin Agren
New submission from Quentin Agren : Hi, This is the first issue I submit so please correct me if I do anything wrong. Description of the issue: imporlib logs 'wrote ' even when file creation fails with OSError (for lack of write persmission for example) Reproducing the bug in Python 3.6 on