[issue10367] "python setup.py sdist upload --show-response" can fail with "UnboundLocalError: local variable 'result' referenced before assignment"

2010-12-12 Thread R. David Murray
Changes by R. David Murray : -- priority: -> normal ___ Python tracker <http://bugs.python.org/issue10367> ___ ___ Python-bugs-list mailing list Unsubscri

[issue4391] use proper gettext plurals forms in argparse and optparse

2010-12-12 Thread R. David Murray
Changes by R. David Murray : -- priority: -> normal ___ Python tracker <http://bugs.python.org/issue4391> ___ ___ Python-bugs-list mailing list Unsubscri

[issue1459867] Message.as_string should use "mangle_from_=unixfrom"?

2010-12-12 Thread R. David Murray
R. David Murray added the comment: On balance I think this would be a backward incompatible change that has insufficient benefit to be worth doing. People who have working code will be depending on the existing defaults of the two methods, and changing this out from under them would be

[issue10686] email.Generator should use unknown-8bit encoded words for headers with 8 bit data

2010-12-12 Thread R. David Murray
New submission from R. David Murray : This is a followon to Issue 4661. The fix for that issue introduced a way to parse messages containing 8bit bytes. When Generator is called on a model containing 8 bit bytes, it converts it to 7bit clean. There is, however, a bug in this conversion

[issue4661] email.parser: impossible to read messages encoded in a different encoding

2010-12-12 Thread R. David Murray
R. David Murray added the comment: I've opened a issue 10686 to address improving the RFC conformance by using unknown-8bit encoded words for 8bit bytes in headers. -- resolution: -> fixed stage: patch review -> committed/rejected status: ope

[issue4766] email documentation needs to be precise about strings/bytes

2010-12-12 Thread R. David Murray
R. David Murray added the comment: The wording was clarified for 3.2 as part of the fix for issue 4661. This does not help the 3.1 docs, so if someone wants to suggest a patch for the 3.1 docs we can reopen the issue. -- resolution: postponed -> fixed stage: -> committed/re

[issue1243654] Faster output if message already has a boundary

2010-12-12 Thread R. David Murray
R. David Murray added the comment: Committed a simpler fix in r87196, backported to 3.1 in r87195, and 2.7 in r87196. -- resolution: -> fixed stage: unit test needed -> committed/rejected status: open -> closed ___ Python track

[issue10688] pydoc removes lib directory

2010-12-12 Thread R. David Murray
R. David Murray added the comment: This is a duplicate of issue 2029. -- nosy: +r.david.murray resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> "python -m pydoc -g" fails ___

[issue9286] email.utils.parseaddr returns garbage for invalid input

2010-12-12 Thread R. David Murray
R. David Murray added the comment: OK, I've studied this more, and it looks to me like the legacy address format allows multiple atoms separated by white space in the local part of the address. This means that the correct parse would be ('', 'merwok w...@rusty.com'

[issue10453] Add -h/--help option to compileall

2010-12-13 Thread R. David Murray
R. David Murray added the comment: Updating patch because the assertTestRegexMatches name was updated. -- Added file: http://bugs.python.org/file20029/compileall_cli_revisited.patch ___ Python tracker <http://bugs.python.org/issue10

[issue10453] Add -h/--help option to compileall

2010-12-13 Thread R. David Murray
Changes by R. David Murray : Removed file: http://bugs.python.org/file19989/compileall_cli_revisited.patch ___ Python tracker <http://bugs.python.org/issue10453> ___ ___

[issue10453] Add -h/--help option to compileall

2010-12-13 Thread R. David Murray
Changes by R. David Murray : Removed file: http://bugs.python.org/file20029/compileall_cli_revisited.patch ___ Python tracker <http://bugs.python.org/issue10453> ___ ___

[issue10453] Add -h/--help option to compileall

2010-12-13 Thread R. David Murray
Changes by R. David Murray : Added file: http://bugs.python.org/file20030/compileall_cli_revisited.patch ___ Python tracker <http://bugs.python.org/issue10453> ___ ___

[issue10691] make testall no longer working on Darwin

2010-12-13 Thread R. David Murray
R. David Murray added the comment: I'm not sure why you would be seeing a test failure on OSX when we aren't seeing it on other platforms, but the cause of the bug is known. It should be fixed by the last patch attached to issue 10453. If you could test that patch it would be

[issue10453] Add -h/--help option to compileall

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

[issue10453] Add -h/--help option to compileall

2010-12-13 Thread R. David Murray
Changes by R. David Murray : Removed file: http://bugs.python.org/file20030/compileall_cli_revisited.patch ___ Python tracker <http://bugs.python.org/issue10453> ___ ___

[issue10453] Add -h/--help option to compileall

2010-12-13 Thread R. David Murray
Changes by R. David Murray : Added file: http://bugs.python.org/file20031/compileall_cli_revisited.patch ___ Python tracker <http://bugs.python.org/issue10453> ___ ___

[issue10692] imap lib server compabilities

2010-12-13 Thread R. David Murray
R. David Murray added the comment: Where does the non-telnet part of your trace come from? How did you produce it? Does this error still occur using 2.7? (Python 2.6 is in security fix only mode at this point.) -- nosy: +eric.smith, r.david.murray stage: -> unit test needed t

[issue10690] IDLE Crash when running/saving Module

2010-12-13 Thread R. David Murray
R. David Murray added the comment: Ned, did you mean issue 9763? -- nosy: +r.david.murray status: pending -> open ___ Python tracker <http://bugs.python.org/issu

[issue10690] IDLE Crash when running/saving Module

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- status: open -> pending ___ Python tracker <http://bugs.python.org/issue10690> ___ ___ Python-bugs-list mailing list Unsubscri

[issue10634] Windows timezone changes not reflected by time.localtime

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- resolution: -> invalid stage: unit test needed -> committed/rejected ___ Python tracker <http://bugs.python.org/i

[issue2394] [Py3k] Finish the memoryview object implementation

2010-12-13 Thread R. David Murray
R. David Murray added the comment: It looks to me like the critical parts of this have been done, so I'm downgrading the priority. -- nosy: +r.david.murray priority: critical -> high versions: +Python 3.2 -Python 3.1 ___ Python tracke

[issue6302] email.header.decode_header data types are inconsistent and incorrectly documented

2010-12-13 Thread R. David Murray
R. David Murray added the comment: Drat, missed this one when I was reviewing my issues for feature requests because I didn't change the type :( -- versions: +Python 3.3 -Python 3.2 ___ Python tracker <http://bugs.python.org/i

[issue6302] email.header.decode_header data types are inconsistent and incorrectly documented

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- nosy: -BreamoreBoy ___ Python tracker <http://bugs.python.org/issue6302> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6302] Add decode_header_as_string method to email.utils

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- title: email.header.decode_header data types are inconsistent and incorrectly documented -> Add decode_header_as_string method to email.utils type: behavior -> feature request ___ Python tracker

[issue9012] Separate compilation of time and datetime modules

2010-12-13 Thread R. David Murray
R. David Murray added the comment: Bump. This bug has priority high and it sounds like the patch is ready for commit. -- nosy: +r.david.murray ___ Python tracker <http://bugs.python.org/issue9

[issue10340] asyncore doesn't properly handle EINVAL on OSX

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- versions: -Python 2.5, Python 2.6 ___ Python tracker <http://bugs.python.org/issue10340> ___ ___ Python-bugs-list mailin

[issue10340] asyncore doesn't properly handle EINVAL on OSX

2010-12-13 Thread R. David Murray
R. David Murray added the comment: "Might even make sense" to backport doesn't sound like a definite, so I've removed 2.6 and 2.5 from versions. You'll want to ask the release managers for a decision if you want to backport. ---

[issue10696] port not split in function urllib.parse.urlsplit

2010-12-13 Thread R. David Murray
R. David Murray added the comment: Take another look at the documentation. http://docs.python.org/dev/library/urllib.parse.html >>> import urllib.parse >>> o = urllib.parse.urlsplit("http://foo.bar.com:80/blarg?a=1&b=2";) >>> o SplitResult(scheme=

[issue10696] port not split in function urllib.parse.urlsplit

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- status: open -> closed ___ Python tracker <http://bugs.python.org/issue10696> ___ ___ Python-bugs-list mailing list Unsubscri

[issue10697] host and port attributes not documented well in function urllib.parse.urlparse and urlsplit

2010-12-13 Thread R. David Murray
R. David Murray added the comment: The repr gives the primary components defined by the URL. The subfields are provided as attributes of the result. This is documented in the example at the top of the chapter, but it is not, IMO, well documented in the rest of the chapter. I'm not

[issue10695] telnetlib.Telnet port number int/str inconsistency

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

[issue10698] doctest load_tests() typo

2010-12-13 Thread R. David Murray
R. David Murray added the comment: Thanks. Fixed in r87216. -- nosy: +r.david.murray resolution: -> fixed stage: -> committed/rejected status: open -> closed type: -> behavior ___ Python tracker <http://bugs.python

[issue1078919] email.Header (via add_header) encodes non-ASCII content incorrectly

2010-12-13 Thread R. David Murray
R. David Murray added the comment: Committed the default-to-utf8 fix in r87217, splitting up the tests as suggested by Barry. Backported to 3.1 in r87218. Updated the documentation for 2.7 in r87219. -- resolution: -> fixed stage: patch review -> committed/rejected status

[issue10699] [patch] fix incorrect help doc with time.tzset

2010-12-13 Thread R. David Murray
R. David Murray added the comment: Thanks. Fixed in py3k in r87221. I'll backport it when I backport my other doc updates. FYI, 'trunk' is no longer a live branch. Development trunk is now py3k. 2.6 only gets security fixes. -- nosy: +r.david.murray resolution:

[issue10699] fix incorrect help doc with time.tzset

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- title: [patch] fix incorrect help doc with time.tzset -> fix incorrect help doc with time.tzset ___ Python tracker <http://bugs.python.org/issu

[issue2226] Small _abcoll Bugs / Oddities

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- stage: -> unit test needed type: -> behavior ___ Python tracker <http://bugs.python.org/issue2226> ___ ___ Python-bugs-

[issue9162] License for multiprocessing files

2010-12-13 Thread R. David Murray
R. David Murray added the comment: Committed in r87225, r87226, and r87227. Thanks, Daniel. -- nosy: +r.david.murray resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker <http://bug

[issue9775] Multiprocessing, logging and atexit play not well together

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- stage: -> unit test needed type: -> behavior ___ Python tracker <http://bugs.python.org/issue9775> ___ ___ Python-bugs-

[issue6696] Profile objects should be documented

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- stage: -> needs patch type: -> behavior versions: +Python 3.2 ___ Python tracker <http://bugs.python.org/issue6696> ___ ___

[issue3657] pickle can pickle the wrong function

2010-12-13 Thread R. David Murray
R. David Murray added the comment: The randomly failing tests seem to have been the high priority issue. The remaining, eponymous issue seems to be of rather lower priority, so I'm setting it to normal. Although Tim wanted a separate issue for the pickling problem, I think there'

[issue4180] warnings.simplefilter("always") does not make warnings always show up

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- type: -> behavior versions: +Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker <http://bugs.python.org/issue4180> ___ _

[issue6377] distutils compiler switch ignored

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- nosy: +eric.araujo stage: -> unit test needed type: -> behavior ___ Python tracker <http://bugs.python.org/issue6377> ___ __

[issue6721] Locks in python standard library should be sanitized on fork

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- stage: -> unit test needed type: -> behavior versions: -Python 2.6 ___ Python tracker <http://bugs.python.org/

[issue10541] regrtest.py -T broken

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- stage: -> needs patch type: -> behavior ___ Python tracker <http://bugs.python.org/issue10541> ___ ___ Python-bugs-list

[issue6559] add pass_fds paramter to subprocess.Popen()

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- title: [PATCH]add pass_fds paramter to subprocess.Popen() -> add pass_fds paramter to subprocess.Popen() type: -> feature request ___ Python tracker <http://bugs.python.org/

[issue10670] Provide search scope limits

2010-12-13 Thread R. David Murray
R. David Murray added the comment: This feature request should be submitted to the Sphinx tracker, since the docs search facility is provided by Sphinx. -- nosy: +r.david.murray resolution: -> invalid stage: -> committed/rejected status: open -> closed type: -> fea

[issue10692] imap lib server compabilities

2010-12-13 Thread R. David Murray
R. David Murray added the comment: Well, in that case your telnet session doesn't tell us all that much, since you are using IMAP4_SSL in the Python but regular non-SSL in the telnet session. Are you sure it is even the same server running on the SSL

[issue10692] imap lib server compabilities

2010-12-13 Thread R. David Murray
R. David Murray added the comment: By the way, an SSL login runs just fine for me against my Courier-IMAP server. Does regular IMAP work for you? -- ___ Python tracker <http://bugs.python.org/issue10

[issue8863] Display Python backtrace on SIGSEGV, SIGFPE and fatal error

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- stage: -> patch review type: -> feature request ___ Python tracker <http://bugs.python.org/issue8863> ___ ___ Python-bugs-

[issue8863] Display Python backtrace on SIGSEGV, SIGFPE and fatal error

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- versions: +Python 3.3 -Python 3.2 ___ Python tracker <http://bugs.python.org/issue8863> ___ ___ Python-bugs-list mailing list Unsub

[issue10262] Add --soabi option to `configure`

2010-12-13 Thread R. David Murray
R. David Murray added the comment: What's the status of this? It sounds like it something that should be taken care of before the 3.2 release, but I know there has been other activity in this area and I haven't looked closely enough to understand the issues involved. -

[issue10530] distutils2 should allow the installing of python files with invalid syntax

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- type: -> feature request ___ Python tracker <http://bugs.python.org/issue10530> ___ ___ Python-bugs-list mailing list Unsubscri

[issue6731] Add option of non-zero exit status of setup.py when building of extensions has failed

2010-12-13 Thread R. David Murray
Changes by R. David Murray : -- type: -> feature request versions: +Python 3.3 -Python 3.2 ___ Python tracker <http://bugs.python.org/issue6731> ___ ___ Py

[issue10695] telnetlib.Telnet port number int/str inconsistency

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Yes, for backward compatibility reasons it is better to make the change that fixes the thing that doesn't work and leave the rest alone. Probably the change wouldn't break *much* existing user code, but why break anything when there doesn't

[issue10692] imap lib server compabilities

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Starttls support was only added in Python 3.2. Apparently your server is set to disallow non-SSL connections. Have you confirmed that the same server is listening on port 993 as is listening on port 143? The debug info from imaplib makes it look like

[issue10692] imap lib server compabilities

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- versions: +Python 2.7 -Python 2.6 ___ Python tracker <http://bugs.python.org/issue10692> ___ ___ Python-bugs-list mailin

[issue10695] telnetlib.Telnet port number int/str inconsistency

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Fixed in py3k in r87230, with test. Backported to 3.1 in r87231 and 2.7 in r87232. The 2.7 backport doesn't include the test since the test infrastructure for it doesn't exist in the 2.7 test_telnetlib. -- resolution: ->

[issue10695] telnetlib.Telnet port number int/str inconsistency

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6 ___ Python tracker <http://bugs.python.org/issue10695> ___ ___ Python-bug

[issue7183] did 2.6.3 regress for some uses of the __doc__ property?

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Since boost has changed their code and no one else has reported a problem and 2.6 is now in bug fix only mode, I'm going to close this as out of date (sorry I overlooked it for 2.6.5). If anyone disagrees, let me know what we should change and why i

[issue775964] fix test_grp failing when NIS entries present

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Committed to py3k in r87238, 3.1 in r87239, and 2.7 in r87240. Thanks, Bobby. -- nosy: +r.david.murray resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Pytho

[issue4236] Crash when importing builtin module during interpreter shutdown

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Brett applied his doc patch in r69092. Attached is a patch that combines Simon's patch with Martin's test program turned into a unit test. I confirm that the test suite passes with the patch applied (and fails with just the test applied). >

[issue3080] Full unicode import system

2010-12-14 Thread R. David Murray
R. David Murray added the comment: With #1342 fixed, it seems that this issue is no longer critical (Haypo describes his complicated patch as "useful on Windows", but not critical. So I'm downgrading it to 'high'. Perhaps it is even 'normal'. It al

[issue10703] Regex 0.1.20101210

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- assignee: -> mark.dickinson nosy: +mark.dickinson, mrabarnett ___ Python tracker <http://bugs.python.org/issue10703> ___ ___ Py

[issue10704] Regex 0.1.20101210 Python 3.1 install problem Mac OS X 10.6.5

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- nosy: +mrabarnett ___ Python tracker <http://bugs.python.org/issue10704> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5368] curses patch add color_set and wcolor_set , and addchstr family of functions

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- stage: -> patch review type: -> feature request ___ Python tracker <http://bugs.python.org/issue5368> ___ ___ Python-bugs-

[issue8769] Straightforward usage of email package fails to round-trip

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- type: -> behavior ___ Python tracker <http://bugs.python.org/issue8769> ___ ___ Python-bugs-list mailing list Unsubscri

[issue4402] os.getenv('PATH') return different result between 2.5 and 3.0rc3

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Looks like it is "won't fix", since it hasn't been. It doesn't seem as though it is our responsibility to clean up crud in the windows registry introduced by other distributions. -- assignee: loewis -> nosy: +r.david

[issue8127] Add link to PortingPythonToPy3k to What's New documentation

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Raymond, I'm adding you as nosy even though I'm closing the issue as out of date in case you do want to add a link in the 3.2 What's New. -- nosy: +r.david.murray, rhettinger resolution: -> out of date status: open -> clo

[issue8776] Bytes version of sys.argv

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- stage: -> needs patch type: -> feature request versions: +Python 3.3 -Python 3.2 ___ Python tracker <http://bugs.python.org/

[issue9967] encoded_word regular expression in email.header.decode_header()

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- type: -> behavior ___ Python tracker <http://bugs.python.org/issue9967> ___ ___ Python-bugs-list mailing list Unsubscri

[issue8828] Atomic function to rename a file

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- type: -> feature request versions: +Python 3.3 -Python 3.2 ___ Python tracker <http://bugs.python.org/issue8828> ___ ___ Py

[issue9285] A decorator for cProfile and profile modules

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- assignee: collinwinter -> stage: -> patch review type: -> feature request versions: +Python 3.3 -Python 3.2 ___ Python tracker <http://bugs.python.o

[issue9248] multiprocessing.pool: Proposal: "waitforslot"

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- stage: -> patch review type: -> feature request versions: +Python 3.3 -Python 2.6, Python 2.7 ___ Python tracker <http://bugs.python.org/

[issue9216] FIPS support for hashlib

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- type: -> feature request ___ Python tracker <http://bugs.python.org/issue9216> ___ ___ Python-bugs-list mailing list Unsubscri

[issue9048] no OS X buildbots in the stable list

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Thanks to Steven Hansen there are now OSX buildbots in the stable list. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed type: -> feature request ___ Python tr

[issue4506] 3.0 make test failures on Solaris 10

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Are there any open problems left here or can this bug be closed? -- ___ Python tracker <http://bugs.python.org/issue4

[issue1525919] email package quoted printable behaviour changed

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- type: -> behavior ___ Python tracker <http://bugs.python.org/issue1525919> ___ ___ Python-bugs-list mailing list Unsubscri

[issue10705] HTTPConnection.set_debuglevel has no information about level range

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Or, since this is Python, they could look at the code and find out that all levels above zero are equivalent. (If I had to guess I'd say 'level' was either future proofing or designed for the use of subclasses). But you are right, this shou

[issue10453] Add -h/--help option to compileall

2010-12-14 Thread R. David Murray
R. David Murray added the comment: committed in r87248. -- resolution: -> accepted stage: unit test needed -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue10707] compileall is broken

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> Add -h/--help option to compileall ___ Python tracker <http://bugs.python

[issue10706] kill runtests.sh

2010-12-14 Thread R. David Murray
R. David Murray added the comment: +1 As far as I could tell it is left over from the pre-unittest days and not completely updated. A few people may miss it, but they'll learn :) -- nosy: +r.david.murray ___ Python tracker

[issue10703] Regex 0.1.20101210

2010-12-14 Thread R. David Murray
Changes by R. David Murray : -- assignee: mark.dickinson -> nosy: -mark.dickinson ___ Python tracker <http://bugs.python.org/issue10703> ___ ___ Python-

[issue4236] Crash when importing builtin module during interpreter shutdown

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Committed to py3k in r87251, 3.1 in r87252, and 2.7 in r87255. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.o

[issue10705] HTTPConnection.set_debuglevel has no information about level range

2010-12-14 Thread R. David Murray
R. David Murray added the comment: I think a PEP is a bit of overkill for a small doc update :) A patch would be fine...but I can also just make the change. I'll probably tweak your wording a bit. -- ___ Python tracker <http://bugs.py

[issue10705] HTTPConnection.set_debuglevel has no information about level range

2010-12-14 Thread R. David Murray
R. David Murray added the comment: I've committed a fix in r87256. I looked at the code some more and tried to be a precise as possible without getting too wordy. (The fix will get backported by and by.) -- resolution: -> fixed stage: -> committed/rejected status: ope

[issue10618] regression in subprocess.call() command quoting

2010-12-14 Thread R. David Murray
R. David Murray added the comment: Tim: we just do our best to guess, and try to err on the conservative side. But things will always happen. Given benjamin's reply I'm closing the issue. Mercurial would have to add conditional code now anyway no matter what we do. -

[issue9319] imp.find_module('test/badsyntax_pep3120') causes segfault

2010-12-15 Thread R. David Murray
R. David Murray added the comment: help no longer segfaults, but the find_module call still does; updating title. The patch does cure the segfault, but as Stefan says it isn't the best fix since having '' in the error message instead of the real file name isn't very usef

[issue10710] Is Misc/setuid-prog.c still needed?

2010-12-15 Thread R. David Murray
R. David Murray added the comment: I started out writing that there must be better stuff available now for doing this, but a search on 'setuid wrapper' on google reveals mostly people asking about or talking about rolling their own special purpose scripts. That said, there is at

[issue9286] email.utils.parseaddr returns garbage for invalid input

2010-12-15 Thread R. David Murray
R. David Murray added the comment: I don't see any reason to use example.com in tests that are not talking to the network and aren't documentation. The interesting question about the other mailers is, if you *receive* an email with such an address (1) what does it show you and (2)

[issue9286] email.utils.parseaddr returns garbage for invalid input

2010-12-15 Thread R. David Murray
R. David Murray added the comment: On the other hand, putting a real domain name that belongs to somebody else into our code base even as a test string is probably impolite without asking, so I'll change it when I commit. -- ___ Python tr

[issue10692] imap lib server compabilities

2010-12-16 Thread R. David Murray
R. David Murray added the comment: You are welcome. Glad you were able to solve it. -- resolution: -> invalid stage: unit test needed -> committed/rejected ___ Python tracker <http://bugs.python.org/i

[issue10718] brand new to programming. crashes at run

2010-12-16 Thread R. David Murray
Changes by R. David Murray : -- assignee: -> ronaldoussoren components: +Macintosh nosy: +ned.deily, ronaldoussoren ___ Python tracker <http://bugs.python.org/issu

[issue10719] compileall no longer warns when cli arguments name non-existent files

2010-12-16 Thread R. David Murray
New submission from R. David Murray : The introduction of support for compiling individual files broke the previous behavior of compileall, where it would report that it could not turn a directory name into a file list if the named directory did not exist. A fix would be to reverse the test

[issue10719] compileall no longer warns when cli arguments name non-existent files

2010-12-16 Thread R. David Murray
R. David Murray added the comment: Fixed in r87324. I've also added a test for the behaviour when no arguments are given, since that wasn't tested before, and removed the sys.path fiddling since it has no effect on subprocess runs. Oh, and fixed a bug in one of the other tests.

[issue10454] Clarify compileall command-line options

2010-12-16 Thread R. David Murray
R. David Murray added the comment: Here is a proposed patch to both docs and help output. The help output now looks like this: usage: compileall.py [-h] [-l] [-f] [-q] [-b] [-d DESTDIR] [-x REGEXP] [-i FILE] [FILE|DIR [FILE|DIR ...]] Utilities to

[issue10722] IDLE's subprocess didnit make connection ..... Python 2.7

2010-12-16 Thread R. David Murray
Changes by R. David Murray : -- nosy: +terry.reedy type: crash -> behavior ___ Python tracker <http://bugs.python.org/issue10722> ___ ___ Python-bugs-list mai

[issue10722] IDLE's subprocess didnit make connection ..... Python 2.7

2010-12-16 Thread R. David Murray
R. David Murray added the comment: Perhaps Terry will have some advice (I've added him as nosy), but you may have better luck asking on the python mailing list (see mail.python.org for list of lists) or its linked newsgroup comp.lang.python, or on the #python irc channel (though the

[issue9824] SimpleCookie should escape commas and semi-colons

2010-12-16 Thread R. David Murray
R. David Murray added the comment: Here's a patch against py3k with test. If I'm understanding the issue correctly, this looks like a pretty safe change. -- nosy: +r.david.murray stage: -> patch review Added file: http://bugs.python.org/file20087/cookies_extra

[issue2193] Cookie Colon Name Bug

2010-12-16 Thread R. David Murray
R. David Murray added the comment: Seems like this really needs a strict and a lax mode. Perhaps a BrowserCookie class that implements the relaxed rules? That would make this a feature request, though, and so nothing would happen until 3.3, which would be unfortunate. It is certainly

<    10   11   12   13   14   15   16   17   18   19   >