[issue10407] missing errno import in distutils/dir_util.py

2010-11-20 Thread Éric Araujo
Éric Araujo added the comment: Fixed in r86601 and r86605 (py3k), r86606 (3.1), r86609 (2.7). Thanks! -- resolution: -> fixed stage: -> committed/rejected status: pending -> closed ___ Python tracker __

[issue10407] missing errno import in distutils/dir_util.py

2010-11-13 Thread Éric Araujo
Éric Araujo added the comment: Thanks for the report. I’ve run pyflakes over the distutils directory and found another error in test_sysconfig. Will fix shortly. -- assignee: tarek -> eric.araujo status: open -> pending type: crash -> behavior versions: +Python 2.7, Python 3.1 _

[issue10407] missing errno import in distutils/dir_util.py

2010-11-13 Thread Zbyszek Szmek
New submission from Zbyszek Szmek : Fix is trivial: diff -r 8daacdacf720 -r 1a821081b470 Lib/distutils/dir_util.py --- a/Lib/distutils/dir_util.py Sat Nov 13 13:27:49 2010 +0100 +++ b/Lib/distutils/dir_util.py Sat Nov 13 14:37:49 2010 +0100 @@ -5,6 +5,7 @@ __revision__ = "$Id: dir_util.py 86244