[issue1085861] subprocess.Popen feature request

2009-02-14 Thread Benjamin Peterson
Benjamin Peterson added the comment: 2.6 has a terminate() method. -- nosy: +benjamin.peterson resolution: -> out of date status: open -> closed ___ Python tracker ___ __

[issue5264] StringIO failure when reading a chunk of text without newlines

2009-02-14 Thread Antoine Pitrou
New submission from Antoine Pitrou : >>> f = io.StringIO("a\r\n", newline=None) >>> f.read(1) Traceback (most recent call last): File "", line 1, in File "/home/antoine/py3k/__svn__/Lib/io.py", line 2007, in read res = self._decode_newlines(self._read(n), True) File "/home/antoine/py3k

[issue5265] StringIO can duplicate newlines in universal newlines mode

2009-02-14 Thread Antoine Pitrou
New submission from Antoine Pitrou : This one is a bit strange: >>> f = io.StringIO("a\r\nb\r\n", newline=None) >>> f.read() 'a\nb\n' >>> f = io.StringIO("a\r\nb\r\n", newline=None) >>> f.read(6) 'a\nb\n' >>> f = io.StringIO("a\r\nb\r\n", newline=None) >>> f.read(5) 'a\n\nb\n' -- messag

[issue850997] mbcs encoding ignores errors

2009-02-14 Thread Mark Hammond
Mark Hammond added the comment: It is still present, but I'm not sure what problems can be seen due to this so can't comment on its desirability. It would also introduce a backwards compatability concern but I've not enough experience to know how much of a problem that would be in practice eith

[issue3871] cross and native build of python for mingw32 with distutils

2009-02-14 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: -tjreedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue5266] StringIO.read(n) does not enforce requested size in newline mode

2009-02-14 Thread Antoine Pitrou
New submission from Antoine Pitrou : Or, more precisely, it returns less than the requested number of characters because characters are counted before translating newlines: >>> f = io.StringIO("a\r\nb\r\n", newline=None) >>> f.read(3) 'a\n' TextIOWrapper gets it right: >>> g = io.TextIOWrapper

[issue5263] Error printing UTF-8 decoded text

2009-02-14 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- resolution: -> invalid status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue1097797] Encoding for Code Page 273 used by EBCDIC Germany Austria

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: Looks like it was never included. I guess '"old" IBM Mainframes' is a dwindling user base, should this one be closed? -- nosy: +ajaksu2 type: -> feature request versions: +Python 2.7 ___ Python tracker

[issue1080387] Making IDLE Themes and Keys Config more Robust

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: This bug describes a 2.3 -> 2.4 transition problem. The idea of making the config system robust seems like a good RFE, if similar issues are still possible. -- nosy: +ajaksu2 stage: -> test needed title: IDLE Themes and Keys Config not Robust -> Making I

[issue1078919] Email.Header encodes non-ASCII content incorrectly

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: The proposed output has the virtue of being easier to read. -- nosy: +ajaksu2 stage: -> test needed type: -> feature request versions: +Python 2.7 -Python 2.4 ___ Python tracker

[issue1533164] Installed but not listed *.pyo break bdist_rpm

2009-02-14 Thread Lukas Lueg
Lukas Lueg added the comment: passing optimize=1 does not help when there is a script (...scripts=['bla.py']...) in the given distribution. The error will be thrown for bla.pyo and bla.pyc -- nosy: +ebfe ___ Python tracker

[issue1100366] Frame does not receive configure event on move

2009-02-14 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed type: -> behavior versions: +Python 2.6 -Python 2.4 ___ Python tracker ___ ___

[issue1085861] subprocess.Popen feature request

2009-02-14 Thread Daniel Diniz
Changes by Daniel Diniz : -- stage: -> test needed versions: +Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue1098732] Enhance tracebacks and stack traces with vars

2009-02-14 Thread Daniel Diniz
Daniel Diniz added the comment: Maybe this could be enabled only on the interactive interpreter? Skip's patch includes tests and docs, needs updating. -- nosy: +ajaksu2 ___ Python tracker _

[issue5267] Subversion problem with PythonLauncher after building 3.0 or 3.1 on Mac

2009-02-14 Thread Mitchell Model
New submission from Mitchell Model : After checking out 3.0 and 3.1 and building them on a Mac (Leopard, Intel) when I subsequently try to do "svn update" I get the error: svn: Directory 'Mac/PythonLauncher/Python Launcher.app/.svn' containing working copy admin area is missing As a result, "

[issue5268] VMSError not documented in Doc/library/exceptions.rst

2009-02-14 Thread Mitchell Model
New submission from Mitchell Model : Lib/test/exception_hierarchy.txt shows VMSError but it is not mentioned in Doc/library/exceptions.rst -- assignee: georg.brandl components: Documentation messages: 82137 nosy: MLModel, georg.brandl severity: normal status: open title: VMSError not do

[issue812369] module shutdown procedure based on GC

2009-02-14 Thread Neil Schemenauer
Neil Schemenauer added the comment: This sounds like a nice idea. The current cleanup procedure in pythonrun.c is pretty lame since it can play havoc with __del__ methods (e.g. if they run after globals have been cleared). I've updated the patch to work with the current SVN head. Probably thi

[issue1097797] Encoding for Code Page 273 used by EBCDIC Germany Austria

2009-02-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: A Google search for "cp273 encoding" reveals that at least one other person needed it: http://www.stroeder.com/pylib/encodings/cp273.py -- nosy: +pitrou ___ Python tracker _

[issue1108] Problem with doctest and decorated functions

2009-02-14 Thread Steven D'Aprano
Steven D'Aprano added the comment: Earlier I wrote: "I've applied the patch to my 2.4 installation, and it doesn't fix the issue. I'd like to request this be reopened, because I don't believe the patch works as advertised." Nevermind, I withdraw the request. I believe I was mislead due to the

[issue5259] smtplib is broken in Python3

2009-02-14 Thread Musashi Tamura
Musashi Tamura added the comment: The attachment is output of smtptest.py on Python 3.0. Added file: http://bugs.python.org/file13092/3.0.txt ___ Python tracker ___ _

<    1   2   3