[issue4601] directory permission error with make install in 3.0

2009-07-02 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Ok, fixed in r73788 and r73789. -- resolution: accepted -> fixed status: open -> closed ___ Python tracker ___ ___

[issue4601] directory permission error with make install in 3.0

2009-07-02 Thread STINNER Victor
STINNER Victor added the comment: ping -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue4601] directory permission error with make install in 3.0

2009-03-24 Thread STINNER Victor
STINNER Victor added the comment: amaury> The patch is fine. Cool :-) Anyone to commit the fix? Maybe, tarek? amaury> If it were me, I'd change os.walk to accept amaury> keyword-only arguments: amaury> def walk(top, *, topdown=True, onerror=None, amaury> followlinks=False): amaury>

[issue4601] directory permission error with make install in 3.0

2008-12-09 Thread STINNER Victor
STINNER Victor <[EMAIL PROTECTED]> added the comment: Hum, there is not fixer for 2to3. But I might be hard to write such fixer because walk() generates (dirpath, dirnames, filenames) instead of (dirpath, filenames). Python2 prototype: os.path.walk(path, visit, arg) -> None with visit: cal

[issue4601] directory permission error with make install in 3.0

2008-12-09 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: The patch is fine. If it were me, I'd change os.walk to accept keyword-only arguments: def walk(top, *, topdown=True, onerror=None, followlinks=False): ... -- nosy: +amaury.forgeotdarc resolution: -> accepted _

[issue4601] directory permission error with make install in 3.0

2008-12-08 Thread STINNER Victor
STINNER Victor <[EMAIL PROTECTED]> added the comment: Gotcha! os.path.walk() was replaced by os.walk() but walk() argument is no more a callback because walk() is a generator! Here is a fix. -- keywords: +patch title: permissions errors with altinstall in 3.0 -> directory permission err