[issue12829] pyexpat segmentation fault caused by multiple calls to Parse()

2011-08-31 Thread David H. Gutteridge
David H. Gutteridge added the comment: Okay. I'd seen the earlier issue, but had submitted this separately because I wasn't sure if it was a security-related bug, whereas the older issue didn't mention anything of the sort. (In retrospect, I could'

[issue9563] optparse: bad exception handling when giving no value to an option requiring one

2010-08-10 Thread R. David Murray
R. David Murray added the comment: Thanks for the confirmation. -- resolution: -> out of date stage: unit test needed -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.o

[issue7950] subprocess.Popen documentation should contain a good warning about the security implications when using shell=True

2010-08-10 Thread R. David Murray
R. David Murray added the comment: Chris, thank you for the patch, sorry I didn't acknowledge it earlier. I think the core of the patch is good, though I will probably drop the text starting from "To safely use..." when I get time to apply it. I will also add a note alo

[issue9553] test_argparse.py: 80 failures if COLUMNS env var set to a value other than 80

2010-08-11 Thread R. David Murray
R. David Murray added the comment: Your code is fine (though to my tastes a bit verbose...if it were me I'd just put the code in the setUp and tearDown methods and hardcode 'COLUMNS' (it isn't like the name COLUMNS is going to change)...but that's just personal style)

[issue9570] PEP 383: os.mknod() and os.mkfifo() do not accept surrogateescape arguments

2010-08-11 Thread R. David Murray
Changes by R. David Murray : -- nosy: +haypo ___ Python tracker <http://bugs.python.org/issue9570> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9571] argparse: Allow the use of -- to break out of nargs and into subparser

2010-08-11 Thread R. David Murray
R. David Murray added the comment: It looks like, if accepted, this would be a feature request,so I'm marking it as such and setting versions to 3.2. You'd have to provide a patch pretty soon to get it in to 3.2, though. However, I'm guessing that this is something better

[issue9572] IOError in test_multiprocessing

2010-08-11 Thread R. David Murray
Changes by R. David Murray : -- nosy: +barry, brett.cannon ___ Python tracker <http://bugs.python.org/issue9572> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9573] imporing a module that executes fork() raises RuntimeError

2010-08-11 Thread R. David Murray
R. David Murray added the comment: This may be a case of "don't do that". Starting a new thread or process during import (ie: while the import lock is held) is dangerous. Nosying Brett, since he'll know the real story. -- nosy: +brett.ca

[issue9553] test_argparse.py: 80 failures if COLUMNS env var set to a value other than 80

2010-08-12 Thread R. David Murray
R. David Murray added the comment: I don't think it is worthwhile to jump through hoops to avoid calling the special methods. Your patch also creates an unnecessary dependency on the internal implementation of EnvironmentVarGuard (ie: the fact that currently __enter__ happens to return

[issue9577] html parser bug related with CDATA sections

2010-08-12 Thread R. David Murray
R. David Murray added the comment: I believe this is a duplicate of Issue670664. If you disagree please reopen with additional information. -- nosy: +r.david.murray resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> HTMLPars

[issue2944] asyncore doesn't handle connection refused correctly

2010-08-12 Thread R. David Murray
R. David Murray added the comment: The question isn't when it was released, but when it was tagged, and that happened at Aug 3 22:51:57 2010 UTC according to svn. Your commit was made Aug 4 08:58:38 2010 UTC. -- nosy: +r.david.murray ___ P

[issue9560] platform.py: use -b option for file command in _syscmd_file()

2010-08-12 Thread R. David Murray
R. David Murray added the comment: Guaranteed? No. -b is not required by posix/SUS. I bet it exists everywhere we care about, though. (cf. http://en.wikipedia.org/wiki/File_(command)) -- nosy: +r.david.murray ___ Python tracker <h

[issue670664] HTMLParser.py - more robust SCRIPT tag parsing

2010-08-13 Thread R. David Murray
Changes by R. David Murray : -- nosy: +Hunanyan ___ Python tracker <http://bugs.python.org/issue670664> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9577] html parser bug related with CDATA sections

2010-08-13 Thread R. David Murray
Changes by R. David Murray : Removed file: http://bugs.python.org/file18495/unnamed ___ Python tracker <http://bugs.python.org/issue9577> ___ ___ Python-bugs-list mailin

[issue9584] Allow curly braces in fnmatch

2010-08-13 Thread R. David Murray
R. David Murray added the comment: Thanks for this suggestion and patch. In general I think more tests would be good, A test for {} would clarify what you are expecting there. -- nosy: +r.david.murray stage: -> patch review versions: +Python

[issue9584] Allow curly braces in fnmatch

2010-08-13 Thread R. David Murray
R. David Murray added the comment: Ah, I had forgotten that detail, Éric. No, it doesn't seem as if implementing braces as matchers is appropriate. fnmatch is only implementing the shell file name globbing. Doing the equivalent of brace expansion would have to be done before app

[issue9584] Allow curly braces in fnmatch

2010-08-13 Thread R. David Murray
R. David Murray added the comment: My view is that people using fnmatch/glob are expecting to get back the same list of files that they would if they ran 'echo ' in the shell. The major shells (sh, bash, zsh, csh) seem to be pretty consistent in this regard (though sh does

[issue9584] Allow curly braces in fnmatch

2010-08-13 Thread R. David Murray
R. David Murray added the comment: Well, Windows supports * and ? globs, but not brace expansion, as far as I can tell (at least on XP, which is what I currently have access to). In fact, I don't believe I've run into brace expansion anywhere except in the unix shell, whereas

[issue9558] build_ext fails on VS8.0

2010-08-13 Thread R. David Murray
R. David Murray added the comment: Éric, 'release blocker' policy depends on the release manager :) Barry, for example, likes people to set release blocker on issues they want him to make sure he looks at before the release. The release manager can always knock it down. As

[issue9592] Limitations in objects returned by multiprocessing Pool

2010-08-13 Thread R. David Murray
Changes by R. David Murray : -- nosy: +jnoller ___ Python tracker <http://bugs.python.org/issue9592> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6724] r74463 causes failures in test_xmlrpc

2010-08-16 Thread R. David Murray
Changes by R. David Murray : -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.o

[issue747320] rfc2822 formatdate functionality duplication

2010-08-18 Thread R. David Murray
R. David Murray added the comment: It still needs to be addressed. I'm marking it for 3.2 but I doubt it will get addressed before 3.3 in reality. I also made the type 'performance' since we have no 'refactoring' type. -- nosy: +r.david.murray st

[issue877121] configure detects incorrect compiler optimization

2010-08-18 Thread R. David Murray
R. David Murray added the comment: I agree, it is the job of the autotools to handle system portability issues such as this, and thus this can be considered a fixable bug. However, it is the kind of thing that is only going to get fixed if someone whom it affects can propose a patch, since I

[issue894936] Have a split corresponding with os.path.join

2010-08-19 Thread R. David Murray
R. David Murray added the comment: It is, however, clearly languishing for want of an implementer... -- status: open -> languishing ___ Python tracker <http://bugs.python.org/issue

[issue9618] IDLE shell ignores all but first statement

2010-08-20 Thread R. David Murray
R. David Murray added the comment: It seems to me that this bug should be closed as a duplicate of the original bug (#3559). It's the same bug, only the proposed solution is different, unless I'm missing something. -- nosy: +r.da

[issue1172011] BaseCookie should call value_decode from __getitem__

2010-08-22 Thread R. David Murray
R. David Murray added the comment: Mark, not many people follow the full bugs list (I'm don't anymore...I just happened to notice this one going by on the IRC channel). Asking a question without adding appropriate people to nosy is therefore not all that likely to obtain a respo

[issue1162477] Parsing failures in parsedate_tz

2010-08-22 Thread R. David Murray
Changes by R. David Murray : -- assignee: -> r.david.murray ___ Python tracker <http://bugs.python.org/issue1162477> ___ ___ Python-bugs-list mailing list Un

[issue1486713] HTMLParser : A auto-tolerant parsing mode

2010-08-22 Thread R. David Murray
R. David Murray added the comment: I disagree (and might disagree with those other closings but I haven't noticed them I guess). BeautifulSoup does *not* cover this ground, it is broken in 3.x because of the lack of a tolerant HTML parser in the stdlib (it used to use sgmlib, which i

[issue8845] Expose sqlite3 connection inTransaction as read-only in_transaction attribute

2010-08-22 Thread R. David Murray
R. David Murray added the comment: The sparc ubuntu buildbot appears to no longer exist. The sparc solaris buildbot doesn't have a problem with it. So right now only PPC Tiger is failing. An endianness issue was suggested, but since T_BOOL is used by _io, and that is tested and pass

[issue8622] Add PYTHONFSENCODING environment variable

2010-08-22 Thread R. David Murray
R. David Murray added the comment: In an up to date checkout of py3k on Gentoo linux with LC_CTYPE=en_US.UTF-8, I get a failure in test_sys: == FAIL: test_pythonfsencoding (test.test_sys.SysModuleTest

[issue8622] Add PYTHONFSENCODING environment variable

2010-08-22 Thread R. David Murray
R. David Murray added the comment: Setting LC_ALL instead of LANG in the test fixes the problem. -- ___ Python tracker <http://bugs.python.org/issue8622> ___ ___

[issue1467619] Header.decode_header eats up spaces

2010-08-22 Thread R. David Murray
R. David Murray added the comment: Georg's patch no longer applies to py3k. I ported it, but the result is not functional. It causes extra spaces during header generation, because it is there that email4/5 "deals" with "ignoring" spaces between encoded words by

[issue1162477] Parsing failures in parsedate_tz

2010-08-23 Thread R. David Murray
R. David Murray added the comment: Here's a patch (essentially the one provided by Thomas) with unit test. -- keywords: +patch stage: unit test needed -> patch review Added file: http://bugs.python.org/file18620/parsedate.patch ___ Python

[issue1194222] parsedate and Y2K

2010-08-23 Thread R. David Murray
R. David Murray added the comment: Thanks for working on this. I would prefer to have two patches: one that fixes the bug (and adds the unit tests) and a separate one for the cleanups (in a new issue). I agree that the fact that it isn't complying with the RFC makes it a bug. It

[issue1486713] HTMLParser : A auto-tolerant parsing mode

2010-08-24 Thread R. David Murray
R. David Murray added the comment: 2.6 is now in security-fix-only mode. Since this is a new feature, it can only go into 3.2. Can you provide a patch against py3k trunk? I've only glanced at the patch briefly, but one thing that concerns me is 'warning file'. I suppose

[issue9670] Exceed Recursion Limit in Thread

2010-08-24 Thread R. David Murray
R. David Murray added the comment: This is not the first recursion limit related problem we've seen with FreeBSD derived systems. See for example Issue1201456. It would be nice to have an actual fix for this class of problem, but I have no clue what that would look like. There may al

[issue6763] Crash on mac os x leopard in mimetypes.guess_type (or PyObject_Malloc)

2010-08-24 Thread R. David Murray
R. David Murray added the comment: Issue1454481, which introduced the ability to set the thread stack size, indicates that the FreeBSD port maintainers were bumping the default limit higher. So I think (3) is probably the correct solution

[issue9670] Exceed Recursion Limit in Thread

2010-08-24 Thread R. David Murray
R. David Murray added the comment: As I mentioned on the other ticket, I think bumping the default stack size is probably the most useful solution. This is is a clearer description of the stack problem, since it doesn't get involved in MIMETypes internals, so I'm not closi

[issue1194222] parsedate and Y2K

2010-08-24 Thread R. David Murray
R. David Murray added the comment: Adding a copyright notice for a patch is not something that we generally do (and your current mod is implicitly claiming the whole file, which doesn't seem right in any case). My understanding is that US copyright law says you have the copyright wh

[issue1194222] parsedate and Y2K

2010-08-24 Thread R. David Murray
R. David Murray added the comment: Applied in r84310. Leaving issue open pending backport. Thanks, Jeffrey. -- ___ Python tracker <http://bugs.python.org/issue1194

[issue8622] Add PYTHONFSENCODING environment variable

2010-08-24 Thread R. David Murray
R. David Murray added the comment: test_sys is still failing on my system where LC_CTYPE only is set to utf-8. Victor, do you want me to apply the LANG->LC_ALL change to the test? -- status: closed -> open ___ Python tracker

[issue1194222] parsedate and Y2K

2010-08-24 Thread R. David Murray
R. David Murray added the comment: Ported to 2.7 in r84311 and to 3.1 in r84312. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue9610] buildbot: uncaptured python exception (smtpd), but no failure in regrtest

2010-08-24 Thread R. David Murray
Changes by R. David Murray : -- nosy: +giampaolo.rodola ___ Python tracker <http://bugs.python.org/issue9610> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9680] Add in declaration order support for the dictionary passed in to the meta class __init__ and __new__ methods

2010-08-25 Thread R. David Murray
R. David Murray added the comment: The ordering of dictionary keys is a fundamental property of Python dictionaries (it's a hash table). PEP 3115 provides the functionality you are looking for, your metaclass just needs to be slightly more complicated. -- nosy: +r.david.m

[issue9679] unicode DNS names in urllib, urlopen

2010-08-25 Thread R. David Murray
R. David Murray added the comment: There was a discussion about IRI on python-dev in the middle of a discussion about adding a coercable bytes type, but I can't find it. I believe the conclusion was that the best solution for IRI support was a new library that implements the full IRI

[issue9679] unicode DNS names in urllib, urlopen

2010-08-25 Thread R. David Murray
Changes by R. David Murray : -- keywords: -buildbot, patch ___ Python tracker <http://bugs.python.org/issue9679> ___ ___ Python-bugs-list mailing list Unsub

[issue9674] make install DESTDIR=/home/blah fails when the prefix specified is /

2010-08-25 Thread R. David Murray
R. David Murray added the comment: See also issue1676135. Seems that the posters were wrong in concluding that the double slashes wouldn't bother anyone using prefix=/ :) -- nosy: +r.david.murray ___ Python tracker <http://bugs.py

[issue9668] strings in json.dump in '' instead of ""

2010-08-25 Thread R. David Murray
R. David Murray added the comment: refresh, can you provide an example that shows the problem you are seeing? Otherwise we'll close this. -- nosy: +r.david.murray resolution: -> works for me stage: -> committed/rejected status: open

[issue9607] Test file 'test_keyword.py' submission for use with keyword.py

2010-08-25 Thread R. David Murray
R. David Murray added the comment: Greg, thanks for working on this. I haven't looked over the whole patch yet, but there's one thing I noticed right away that needs to be fixed. 'python.exe' is the name of the python executable only on OS X, and the tests are not alway

[issue8716] test_tk fails on OS X if run from buildbot slave daemon -- crashes Python

2010-08-25 Thread R. David Murray
R. David Murray added the comment: I just ran into this while trying to run the test suite with -uall while sshed into an OSX machine and running a non-framework build. This makes it kind of hard to run the full test suite. Is there some way to detect that we don't have access to the w

[issue9681] small typo in online documentation

2010-08-25 Thread R. David Murray
Changes by R. David Murray : -- assignee: -> d...@python components: +Documentation nosy: +d...@python type: -> behavior ___ Python tracker <http://bugs.python.org/

[issue9682] socket.create_connection error message for domain subpart with invalid length is very confusing

2010-08-25 Thread R. David Murray
New submission from R. David Murray : >>> socket.create_connection(('a..com', 25)) Traceback (most recent call last): File "", line 1, in File "/home/rdmurray/python/py3k/Lib/socket.py", line 300, in create_connection for res in getaddrinfo(hos

[issue9208] SMTPHandler in the logging module does not handle unicode strings

2010-08-25 Thread R. David Murray
R. David Murray added the comment: Given Vinay's last comment I don't think this needs addressing in 2.x, and it is not a problem in 3.x. -- nosy: +r.david.murray resolution: -> out of date stage: -> committed/rejected status: pending -> closed versions: +Pyt

[issue9685] tuples should remember their hash value

2010-08-25 Thread David Albert Torpey
New submission from David Albert Torpey : Dictionary keys are commonly numbers, strings, or tuples. Python has optimized numbers and strings to remember their hash values on successive calls. Tuples should do this too since their recursive hash function can take a long time to compute. Tuples

[issue9689] threading.Timer poorly documented

2010-08-25 Thread R. David Murray
R. David Murray added the comment: That's just a summary. The full documentation of the class is further down the page. What's missing is a hyperlink from the summary to the full description. It's probably just a markup error. -- nosy:

[issue9689] threading.Timer poorly documented

2010-08-25 Thread R. David Murray
Changes by R. David Murray : -- assignee: -> d...@python components: +Documentation nosy: +d...@python type: feature request -> behavior versions: +Python 3.1, Python 3.2 -Python 2.5, Python 2.6 ___ Python tracker <http://bugs.python.org/

[issue2570] backport 3.0-style \u/\U processing in raw strings when unicode_literals is imported from __future__

2010-08-25 Thread R. David Murray
R. David Murray added the comment: Yes it does seem like it is too late for this, code might be depending on this behavior now in 2.7. -- nosy: +r.david.murray status: pending -> closed ___ Python tracker <http://bugs.python.org/iss

[issue9427] logging.error('...', exc_info=True) should display upper frames, too

2010-08-26 Thread R. David Murray
Changes by R. David Murray : -- nosy: +r.david.murray ___ Python tracker <http://bugs.python.org/issue9427> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1403349] in email can't get attachments' filenames using get_filename

2010-08-26 Thread R. David Murray
R. David Murray added the comment: Ich, if your problem still exists in 2.7, 3.1, or 3.2, please open a new issue with a test case showing the problem you are running in to. -- nosy: +r.david.murray ___ Python tracker <http://bugs.python.

[issue1403349] in email can't get attachments' filenames using get_filename

2010-08-26 Thread R. David Murray
R. David Murray added the comment: Also, issue 7082 might be relevant here, since it fixed a bug in this fix. -- ___ Python tracker <http://bugs.python.org/issue1403

[issue1379416] email.Header encode() unicode P2.6

2010-08-26 Thread R. David Murray
Changes by R. David Murray : -- keywords: +patch Added file: http://bugs.python.org/file18652/header_encode_test.diff ___ Python tracker <http://bugs.python.org/issue1379

[issue1379416] email.Header encode() unicode P2.6

2010-08-26 Thread R. David Murray
Changes by R. David Murray : Added file: http://bugs.python.org/file18653/header_charset_fix.diff ___ Python tracker <http://bugs.python.org/issue1379416> ___ ___ Pytho

[issue1379416] email.Header encode() unicode P2.6

2010-08-26 Thread R. David Murray
R. David Murray added the comment: I've attached a fix and test. I've uploaded them separately since the fix only applies to 2.7, but I want to put the test into 3.x as well. -- ___ Python tracker <http://bugs.python.org

[issue1379416] email.Header encode() unicode P2.6

2010-08-26 Thread R. David Murray
Changes by R. David Murray : -- stage: unit test needed -> patch review ___ Python tracker <http://bugs.python.org/issue1379416> ___ ___ Python-bugs-list mai

[issue877904] freeze: problems excluding site

2010-08-26 Thread R. David Murray
Changes by R. David Murray : -- resolution: wont fix -> accepted status: closed -> languishing ___ Python tracker <http://bugs.python.org/issue877904> ___ __

[issue444582] Finding programs in PATH, adding shutil.which

2010-08-26 Thread R. David Murray
R. David Murray added the comment: As far as I can tell from a little bit of testing, if it is even possible to quote ':' in a posix path it isn't obvious how you do it. -- nosy: +r.david.murray ___ Python tracker <http

[issue5556] interactive interpreter, source encoding

2010-08-26 Thread R. David Murray
R. David Murray added the comment: Agreed. Although the docs do not explicitly say "you cannot use bytes as source", this is clearly implicit in the Python3 bytes/string separation. The docs talk only about string inputs. -- nosy: +r.david.murray resolution: -> invali

[issue9694] argparse: Default Help Message Lists Required Args As Optional

2010-08-26 Thread R. David Murray
R. David Murray added the comment: Yeah, the fact that it is listed under the heading "optional arguments:" :) Guess we need a new section? -- nosy: +r.david.murray ___ Python tracker <http://bugs.python.

[issue9682] socket.create_connection error message for domain subpart with invalid length is very confusing

2010-08-26 Thread R. David Murray
R. David Murray added the comment: Ah, I wondered if it was something like that (encoding=>UnicodeError). It's not really a *unicode* error, it's a syntax error in the domain name construction (ie: it is invalid whether or not unicode is involved, it just isn't caught in 2

[issue9694] argparse: Default Help Message Lists Required Args As Optional

2010-08-26 Thread R. David Murray
R. David Murray added the comment: Perhaps you could just label them 'options:'? After all, even if you have several options you may be required to pick at least one :) -- ___ Python tracker <http://bugs.python.

[issue9652] Tidy argparse default output

2010-08-27 Thread R. David Murray
Changes by R. David Murray : -- nosy: +bethard ___ Python tracker <http://bugs.python.org/issue9652> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9694] argparse: Default Help Message Lists Required Args As Optional

2010-08-27 Thread R. David Murray
R. David Murray added the comment: Well, there's also issue 9652, which speaks to having a more general facility, I suppose. Maybe an exposed dictionary attribute containing the constant strings? -- ___ Python tracker <http://bugs.py

[issue9698] When reusing an handler, urllib(2)'s digest authentication fails after multiple regative replies

2010-08-27 Thread R. David Murray
Changes by R. David Murray : -- nosy: +orsenthil versions: -Python 2.5, Python 3.3 ___ Python tracker <http://bugs.python.org/issue9698> ___ ___ Python-bug

[issue8797] urllib2 basicauth broken in 2.6.5: RuntimeError: maximum recursion depth exceeded in cmp

2010-08-27 Thread R. David Murray
R. David Murray added the comment: See also new issue 9698. -- ___ Python tracker <http://bugs.python.org/issue8797> ___ ___ Python-bugs-list mailing list Unsub

[issue9699] invalid call of Windows API _popen() generating The input line is too long error message

2010-08-27 Thread R. David Murray
R. David Murray added the comment: Python does not call _popen, though it does call cmd.exe (through CreateProcess) when shell=True in subprocess. Can you provide an example that shows this error occurring? -- nosy: +r.david.murray versions: -Python 2.5, Python 3.3

[issue9702] Python violates most users expectations via the modification differences of immutable and mutable objects in methods

2010-08-27 Thread R. David Murray
R. David Murray added the comment: What you describe is the way Python is *designed* to work at a very fundamental level. Read about 'namespaces', and look at the computer science literature on 'call by object'. -- nosy: +r.david.murray resolution: later -&g

[issue9699] invalid call of Windows API _popen() generating The input line is too long error message

2010-08-27 Thread R. David Murray
R. David Murray added the comment: Thanks, sorin. This issue is at least affected by the fix to issue 2304. I don't currently have an up-to-date version of 2.7 trunk on my windows VM, so I can't test your code there. (Note that 'import tee' needs to be removed befor

[issue1674555] sys.path in tests contains system directories

2010-08-27 Thread R. David Murray
Changes by R. David Murray : -- nosy: +r.david.murray ___ Python tracker <http://bugs.python.org/issue1674555> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1486713] HTMLParser : A auto-tolerant parsing mode

2010-08-27 Thread R. David Murray
R. David Murray added the comment: For anyone who does want to work on this (and I do, but it will be quite a while before I can) see also issue 6191. -- ___ Python tracker <http://bugs.python.org/issue1486

[issue9694] argparse: Default Help Message Lists Required Args As Optional

2010-08-27 Thread R. David Murray
R. David Murray added the comment: *This* bug is a behavior bug (required flags are mis-labelled as being optional in the help text). The referenced bug is a feature request, but it may make sense to consider it while fixing this one

[issue9652] Enhance argparse help output customizability

2010-08-27 Thread R. David Murray
Changes by R. David Murray : -- title: Tidy argparse default output -> Enhance argparse help output customizability ___ Python tracker <http://bugs.python.org/iss

[issue9652] Enhance argparse help output customizability

2010-08-27 Thread R. David Murray
Changes by R. David Murray : -- nosy: +r.david.murray ___ Python tracker <http://bugs.python.org/issue9652> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2489] Patch for bugs in pty.py

2010-08-27 Thread R. David Murray
Changes by R. David Murray : Removed file: http://bugs.python.org/file14148/pty.py.patch3 ___ Python tracker <http://bugs.python.org/issue2489> ___ ___ Python-bugs-list m

[issue2489] Patch for bugs in pty.py

2010-08-27 Thread R. David Murray
R. David Murray added the comment: Woops, didn't mean to delete that file. Reattaching. -- nosy: +r.david.murray Added file: http://bugs.python.org/file18665/pty.py.patch3 ___ Python tracker <http://bugs.python.org/i

[issue2489] Patch for bugs in pty.py

2010-08-27 Thread R. David Murray
Changes by R. David Murray : Removed file: http://bugs.python.org/file18665/pty.py.patch3 ___ Python tracker <http://bugs.python.org/issue2489> ___ ___ Python-bugs-list m

[issue2489] Patch for bugs in pty.py

2010-08-27 Thread R. David Murray
R. David Murray added the comment: That didn't work so well :( -- ___ Python tracker <http://bugs.python.org/issue2489> ___ ___ Python-bugs-list m

[issue2489] Patch for bugs in pty.py

2010-08-27 Thread R. David Murray
Changes by R. David Murray : Added file: http://bugs.python.org/file18666/pty.py.patch3 ___ Python tracker <http://bugs.python.org/issue2489> ___ ___ Python-bugs-list m

[issue2489] Patch for bugs in pty.py

2010-08-27 Thread R. David Murray
R. David Murray added the comment: OK, file restored. Design bugs are usually fixed by "feature requests" :) See issue 967171 for the feature request. -- versions: +Python 2.7, Python 3.2 -Python 2.4, Python 2.6 ___ Python trac

[issue967161] pty.spawn() enhancements

2010-08-27 Thread R. David Murray
R. David Murray added the comment: No, issue 2489 is a bug fix, and the inclusion of a feature request in it has already had an objection. This bug should stay open to cover the feature request, I think. The patch for the RFE is pretty simple... -- nosy: +r.david.murray stage

[issue9652] Enhance argparse help output customizability

2010-08-27 Thread R. David Murray
Changes by R. David Murray : -- title: Tidy argparse default output -> Enhance argparse help output customizability ___ Python tracker <http://bugs.python.org/iss

[issue1677] Ctrl-C will exit out of Python interpreter in Windows

2010-08-27 Thread R. David Murray
R. David Murray added the comment: I can't reproduce this on windows (in a KVM) with 2.6 or 2.7. -- nosy: +r.david.murray ___ Python tracker <http://bugs.python.org/i

[issue4319] optparse and non-ascii help strings

2010-08-27 Thread R. David Murray
R. David Murray added the comment: While I think there is indeed an expectations bug here, I also think it is no longer worth fixing. argparse is the New Way, as is 3.x and its Strings. Closing as wont fix. -- nosy: +r.david.murray resolution: -> wont fix status: open ->

[issue9702] Python violates most users expectations via the modification differences of immutable and mutable objects in methods

2010-08-28 Thread R. David Murray
R. David Murray added the comment: This is not an appropriate discussion for the bug tracker. Please take it to the Python mailing list. -- ___ Python tracker <http://bugs.python.org/issue9

[issue1111130] tkSimpleDialog broken on MacOS X (Aqua Tk)

2010-08-28 Thread R. David Murray
R. David Murray added the comment: I think we need a "vendor problem" resolution :) Closed as 'works for me' instead since that's effectively what Ned said. -- nosy: +r.david.murray resolution: -> works for me status: open -> closed ___

[issue9708] cElementTree iterparse does not support "parser" argument

2010-08-28 Thread R. David Murray
Changes by R. David Murray : -- nosy: +flox ___ Python tracker <http://bugs.python.org/issue9708> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9714] urllib2 digest authentication doesn't work when connecting to a Catalyst server.

2010-08-30 Thread R. David Murray
Changes by R. David Murray : -- nosy: +orsenthil versions: -Python 2.5, Python 2.6, Python 3.3 ___ Python tracker <http://bugs.python.org/issue9714> ___ ___ Pytho

[issue1367631] maximum length not enforced in cgi.parse()

2010-08-30 Thread R. David Murray
Changes by R. David Murray : -- status: closed -> languishing ___ Python tracker <http://bugs.python.org/issue1367631> ___ ___ Python-bugs-list mailing list Un

[issue9721] urlparse.urljoin() cuts off last base character with semicolon at url start

2010-08-31 Thread R. David Murray
Changes by R. David Murray : -- nosy: +orsenthil ___ Python tracker <http://bugs.python.org/issue9721> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9730] base64 docs refers to strings instead of bytes

2010-09-02 Thread R. David Murray
R. David Murray added the comment: See issue 4769, which would partially fix this problem if implemented correctly. The docs should still be given a thorough review to use the appropriate bytes/string language. There is a way to do automated testing of the code in the docs, but nobody has

[issue837046] pyport.h redeclares gethostname() if SOLARIS is defined

2010-09-04 Thread R. David Murray
R. David Murray added the comment: I'm not sure it was appropriate to close this bug in isolation without confirmation that it is no longer a problem, but I'm also guessing that it is in fact no longer a problem due to the fix to issue 1759169. So because that seems likely I&#x

<    21   22   23   24   25   26   27   28   29   30   >