[issue10548] Error in setUp not reported as expectedFailure (unittest)

2010-12-06 Thread R. David Murray
R. David Murray added the comment: I would expect this code to report an error of some sort, not pass as an expected failure. The expected failure should be in the test case *only*, not in the setup or teardown methods. That is, I don't think this is a bug, I think it is a feature

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

2010-12-06 Thread R. David Murray
R. David Murray added the comment: I'm working on it. -- ___ Python tracker <http://bugs.python.org/issue10453> ___ ___ Python-bugs-list mailing list Unsubsc

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

2010-12-06 Thread R. David Murray
R. David Murray added the comment: Here's the test. The fix isn't as simple as making it nargs='*', though. -- Added file: http://bugs.python.org/file19960/compileall_multidir_test.diff ___ Python tracker <http://bug

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

2010-12-06 Thread R. David Murray
R. David Murray added the comment: Here is a fix. This is not finished, though, because I see that I did not do an adequate review of the original patch. There are still bugs in the -d and -i handling that need both tests and fixes. -- Added file: http://bugs.python.org/file19961

[issue10640] SystemError on pickling bytes >= 4GB

2010-12-06 Thread R. David Murray
R. David Murray added the comment: I suspect this is a duplicate of issue 9614, or rather a subset of that issue. -- nosy: +alexandre.vassalotti, amaury.forgeotdarc, janglin, pitrou, r.david.murray ___ Python tracker <http://bugs.python.

[issue9517] Make test.script_helper more comprehensive, and use it in the test suite

2010-12-06 Thread R. David Murray
R. David Murray added the comment: I just tried using script_helper in a new test, so I have a couple of comments. I don't see stdout and stderr being conflated, it looks to me like they are returned separately, at least by the assert methods. The assert methods return results, whi

[issue9517] Make test.script_helper more comprehensive, and use it in the test suite

2010-12-06 Thread R. David Murray
Changes by R. David Murray : -- nosy: +michael.foord ___ Python tracker <http://bugs.python.org/issue9517> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10626] test_concurrent_futures implicitly installs a logging handler on import

2010-12-06 Thread R. David Murray
R. David Murray added the comment: Wow, I didn't realize that's how logging worked. My understanding was a module should just get a logger and log messages, and if the application didn't do any setup beforehand, the first logging call would cause messages to be written to st

[issue10548] Error in setUp not reported as expectedFailure (unittest)

2010-12-06 Thread R. David Murray
R. David Murray added the comment: I have to say that it would never have occurred to me to assert a pre or post condition and an expected failure where I expected the pre or post condition to fail, but if you've got a real use case and it would make the code simpler, I suppose I ha

[issue9517] Make test.script_helper more comprehensive, and use it in the test suite

2010-12-06 Thread R. David Murray
R. David Murray added the comment: OK, fine on the convention, but I'd still like a more memorable name for assert_python_failure. I've been working on this issue off and on today, and I've had to look up that name at least four times. I can remember assert_python_ok, but I

[issue10643] OSX proxy exceptions parse bug in urllib (crash)

2010-12-07 Thread R. David Murray
Changes by R. David Murray : -- stage: -> committed/rejected type: crash -> behavior ___ Python tracker <http://bugs.python.org/issue10643> ___ ___ Pyth

[issue10642] site.py crashes on python startup due to defective .pth file

2010-12-07 Thread R. David Murray
R. David Murray added the comment: If the problem is in site.py it doesn't sound like a distutils bug at all. I remember Victor doing something that changed the error handling/reporting when importing site.py, so I'm adding him as nosy. I thought that was only in 3.x, though.

[issue9523] Improve dbm modules

2010-12-07 Thread R. David Murray
R. David Murray added the comment: I believe that in the absence of other documentation the ABC is considered authoritative. -- nosy: +r.david.murray ___ Python tracker <http://bugs.python.org/issue9

[issue10647] scrollbar crash in non-US locale format settings

2010-12-07 Thread R. David Murray
R. David Murray added the comment: I'm not sure what bug you are reporting here. Are you saying that values using a , are automatically getting generated by tkinter and then rejected when fed back in? If so, I suspect this is a tk problem, not tkinter problem, but someone would ha

[issue10647] scrollbar crash in non-US locale format settings

2010-12-07 Thread R. David Murray
R. David Murray added the comment: On gentoo linux with tcl/tk 8.5.8, if I use the following command line: >LC_NUMERIC=fr_FR ../release31-maint/python ListboxScrollbarLocaleIssue.py (which runs 3.1.3+) I can move the slider without any problem. I confirmed that locale.format_string(

[issue10647] scrollbar crash in non-US locale format settings

2010-12-07 Thread R. David Murray
R. David Murray added the comment: Well, it sounds like you are on Windows, which is a platform I'm not all that familiar with. I think we bundle TK for the windows installer, but I'm not 100% sure. I think to use a different version you have to recompile Python, which on Window

[issue10649] Attempting to override special methods of a function object does not cause an error

2010-12-07 Thread R. David Murray
R. David Murray added the comment: As you observe, the attribute is not read only, it simply isn't referred to when special method lookup is done. This is specified as part of the language design for new style classes, but has only been made consistently true in recent versions. On o

[issue9517] Make test.script_helper more comprehensive, and use it in the test suite

2010-12-08 Thread R. David Murray
R. David Murray added the comment: Here is a patch that causes _assert_python to remove the refcount lines from stderr. -- keywords: +patch Added file: http://bugs.python.org/file19975/script_helper_del_refcount.patch ___ Python tracker <h

[issue9517] Make test.script_helper more comprehensive, and use it in the test suite

2010-12-08 Thread R. David Murray
R. David Murray added the comment: Hmm. Having posted that it occurs to me that it could be useful to have the _remove_refcount function in test.support as remove_refcount instead. -- ___ Python tracker <http://bugs.python.org/issue9

[issue10654] test_datetime fails on Python3.2 windows binary

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

[issue10653] test_time test_strptime fails on windows

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

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

2010-12-08 Thread R. David Murray
R. David Murray added the comment: I'm still working on this, making sure the remaining options that aren't currently tested have tests and work. -- assignee: eric.araujo -> r.david.murray ___ Python tracker <http://bugs.pytho

[issue9517] Make test.script_helper more comprehensive, and use it in the test suite

2010-12-08 Thread R. David Murray
R. David Murray added the comment: Oh, good, I'll use that then. I could have sworn I looked for that functionality a couple weeks ago and couldn't find it. -- ___ Python tracker <http://bugs.python.

[issue10660] format() to lower and uppercase

2010-12-09 Thread R. David Murray
R. David Murray added the comment: The format support is written specifically so that it is extensible. You can write your own string subclass that extends the formatting mini-language with whatever features you find useful. There are too many variations on what might be useful with

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

2010-12-09 Thread R. David Murray
R. David Murray added the comment: OK, here is what I hope is a comprehensive set of CLI tests, and fixes for the bugs revealed thereby. Except for the new test added by Georg after the original patch here was committed, all of the tests either pass using the old compileall module or fail

[issue5845] rlcompleter should be enabled automatically

2010-12-09 Thread R. David Murray
R. David Murray added the comment: for what it is worth, I am +1 on having completion and history file work by default. The sqlite3 command line does this, for example. I think it is what unix user expect nowadays, and I think it is reasonable. Looking at my home directory, it would appear

[issue10668] Array tests have nonsense in them

2010-12-09 Thread R. David Murray
R. David Murray added the comment: This class was added by the fix for issue 1486663 in r53509. Adding Georg as nosy since he committed it, but it seems like it would be worth fixing it in case someone else uses the class in an additional test in the future. -- nosy: +georg.brandl

[issue10668] Array tests have nonsense in them

2010-12-09 Thread R. David Murray
Changes by R. David Murray : -- versions: +Python 3.1, Python 3.2 ___ Python tracker <http://bugs.python.org/issue10668> ___ ___ Python-bugs-list mailin

[issue10673] multiprocess.Process join method - timeout indistinguishable from success

2010-12-10 Thread R. David Murray
R. David Murray added the comment: My guess is "it shouldn't", and "yes", but I've added the multiprocessing maintainers as nosy and they can answer definitively. -- nosy: +asksol, jnoller, r.david.murray ___ Python tr

[issue10674] Unused dictmaker symbol in 2.* grammar

2010-12-10 Thread R. David Murray
Changes by R. David Murray : -- nosy: +benjamin.peterson ___ Python tracker <http://bugs.python.org/issue10674> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10675] unittest should have an assertChanges context manager

2010-12-10 Thread R. David Murray
R. David Murray added the comment: I think this is the kind of thing where you are *much* better off writing a specialized assert method that exactly fits your use case. There are too many variations on this theme, IMO, for it to make sense as an stdlib method. -- nosy

[issue678250] test_mmap failing on AIX

2010-12-10 Thread R. David Murray
R. David Murray added the comment: Committed the patch_flush_mmap patch to 3.1 in r87163 and 2.7 in r87164. -- status: open -> closed ___ Python tracker <http://bugs.python.org/issue

[issue10515] csv sniffer does not recognize quotes at the end of line

2010-12-10 Thread R. David Murray
R. David Murray added the comment: What do you mean by "there is a test for this case in csv.py"? If I run sniffer against "abcde\ndefgh\n" I get a delimiter of 'e'. If I run it against 'a\nb\n', I get the could not determine delimiter error. Attach

[issue10515] csv sniffer does not recognize quotes at the end of line

2010-12-10 Thread R. David Murray
R. David Murray added the comment: Forgot to attach the patch. -- Added file: http://bugs.python.org/file20006/csv_delimiter_tests.patch ___ Python tracker <http://bugs.python.org/issue10

[issue1574217] isinstance swallows exceptions

2010-12-10 Thread R. David Murray
R. David Murray added the comment: Upon reflection I think the risk of breaking apparently working programs is higher than the benefit to be obtained from backporting this. -- ___ Python tracker <http://bugs.python.org/issue1574

[issue10642] site.py crashes on python startup due to defective .pth file

2010-12-10 Thread R. David Murray
Changes by R. David Murray : -- resolution: -> invalid stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue10515] csv sniffer does not recognize quotes at the end of line

2010-12-11 Thread R. David Murray
R. David Murray added the comment: Yeah, obviously wrong. I forgot to finish editing the comment. I think a fallback of ',' makes more sense than ''. What would a delimiter of nothing mean? I don't think the unquoted case can be changed for backward compatibility

[issue10642] site.py crashes on python startup due to defective .pth file

2010-12-11 Thread R. David Murray
R. David Murray added the comment: I like the suggestion of turning it into a warning, myself, but you are right that at the least the error message should be improved. -- resolution: invalid -> stage: committed/rejected -> needs patch status: closed -

[issue10678] email.utils.mktime_tz Giving wrong result , by ignoring Timezone that comes from value of parsedate_tz .

2010-12-11 Thread R. David Murray
R. David Murray added the comment: mktime_tz is documented as turning the input into a *UTC* timestamp. That's what your example shows it doing. There is an open issue elsewhere in this tracker for providing a way to round-trip RFC2822 timestamps. -- nosy: +r.david.m

[issue10642] Improve the error message of addpackage() (site.py) for defective .pth file

2010-12-11 Thread R. David Murray
R. David Murray added the comment: My guess is people don't read warnings when they are a common occurrence. A working Python should not emit any warnings, and a properly working Python program (post 2.6/3.1 (or whenever it was we decided to suppress deprecation warnings by default)) s

[issue10682] With '*args' or even bare '*' in def/call argument list, trailing comma causes SyntaxError

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

[issue10684] Shutil.move deletes file/folder in windows while renaming

2010-12-12 Thread R. David Murray
Changes by R. David Murray : -- nosy: +brian.curtin, tarek, tim.golden ___ Python tracker <http://bugs.python.org/issue10684> ___ ___ Python-bugs-list mailin

[issue10188] tempfile.TemporaryDirectory may throw errors at shutdown

2010-12-12 Thread R. David Murray
R. David Murray added the comment: The tests are failing on windows: http://www.python.org/dev/buildbot/all/builders/x86%20XP-4%203.x/builds/3770/steps/test/logs/stdio == ERROR: test_mkdtemp_failure

[issue10188] tempfile.TemporaryDirectory may throw errors at shutdown

2010-12-12 Thread R. David Murray
R. David Murray added the comment: There's also a typo in the issue number in your commit message (10888 instead of 10188). -- ___ Python tracker <http://bugs.python.org/is

[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

<    30   31   32   33   34   35   36   37   38   39   >