[issue12967] AttributeError distutils\log.py

2011-10-08 Thread Éric Araujo
Éric Araujo added the comment: I stand by my opinion that running setup.py from IDLE is not supported. -- resolution: -> wont fix stage: -> committed/rejected status: open -> closed type: compile error -> behavior ___ Python tracker

[issue12967] AttributeError distutils\log.py

2011-09-17 Thread Éric Araujo
Éric Araujo added the comment: > I'm not suggesting that python does not test the applications. just reporting > what I experience. I was joking :) What I meant was: I can’t agree with the statement “it could be raised on any other usage as sys.stdout does not have an 'error' attribute” becau

[issue12967] AttributeError distutils\log.py

2011-09-17 Thread Éric Araujo
Changes by Éric Araujo : Removed file: http://bugs.python.org/file23170/unnamed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue12967] AttributeError distutils\log.py

2011-09-17 Thread Éric Araujo
Changes by Éric Araujo : Removed file: http://bugs.python.org/file23181/unnamed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue12967] AttributeError distutils\log.py

2011-09-17 Thread Éric Araujo
Changes by Éric Araujo : Removed file: http://bugs.python.org/file23136/log.py ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue12967] AttributeError distutils\log.py

2011-09-17 Thread ben
    From: Ned Deily To: thelen_...@yahoo.com Sent: Saturday, 17 September 2011 4:43 AM Subject: [issue12967] AttributeError distutils\log.py Ned Deily added the comment: That won't work in IDLE because IDLE replaces the standard sys.stdout file object with a special proxy object to captur

[issue12967] AttributeError distutils\log.py

2011-09-16 Thread Ned Deily
Ned Deily added the comment: That won't work in IDLE because IDLE replaces the standard sys.stdout file object with a special proxy object to capture stdout across its processes and the proxy object does not currently support all of the attributes of a io.TextTIOWrapper object, like errors.

[issue12967] AttributeError distutils\log.py

2011-09-16 Thread ben
n From: Éric Araujo To: thelen_...@yahoo.com Sent: Thursday, 15 September 2011 10:54 PM Subject: [issue12967] AttributeError distutils\log.py Éric Araujo added the comment: How?  Please tell exactly what command you ran with what Python version. It does, in 3.x.  Do you thin

[issue12967] AttributeError distutils\log.py

2011-09-15 Thread Éric Araujo
Éric Araujo added the comment: > when installing the distribute package How? Please tell exactly what command you ran with what Python version. > it could be raised on any other usage as sys.stdout does not have > an 'error' attribute. It does, in 3.x. Do you think Python has no tests or no u

[issue12967] AttributeError distutils\log.py

2011-09-15 Thread Éric Araujo
Changes by Éric Araujo : Removed file: http://bugs.python.org/file23147/unnamed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue12967] AttributeError distutils\log.py

2011-09-13 Thread ben
issue12967] AttributeError distutils\log.py Éric Araujo added the comment: When will it raise an AttributeError? -- ___ Python tracker <http://bugs.python.org/issue12967> ___ -- Added file: http://bugs.pyth

[issue12967] AttributeError distutils\log.py

2011-09-13 Thread Éric Araujo
Éric Araujo added the comment: When will it raise an AttributeError? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue12967] AttributeError distutils\log.py

2011-09-12 Thread ben
New submission from ben : AttributeErrors on log.py in the distutils directory import sys stream = sys.stdout if stream.errors == 'strict': pass'=> this will raise an AttributeError' -- assignee: tarek components: Distutils files: log.py messages: 143949 nosy: Ben.thelen, eric.araujo, t