[issue10312] intcatcher() can deadlock

2014-06-26 Thread Mark Lawrence
Mark Lawrence added the comment: intrcheck.c no longer exists in cpython so can this be closed "out of date"? -- nosy: +BreamoreBoy ___ Python tracker ___ ___

[issue8214] Add exception logging function to syslog module

2014-06-26 Thread Mark Lawrence
Mark Lawrence added the comment: @Sean is this something you can pick up again, it seems a shame to let your past efforts gather dust? -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.2 ___ Python tracker

[issue21873] Tuple comparisons with NaNs are broken

2014-06-26 Thread Mak Nazečić-Andrlon
Mak Nazečić-Andrlon added the comment: It's not about equality. >>> class A: pass ... >>> (float("nan"), A()) < (float("nan"), A()) False That < comparison should throw a TypeError, since NaN < NaN is False, in the same way that 0 < 0 is False here: >>> (0, A()) < (0, A()) Tr

[issue4613] Can't figure out where SyntaxError: can not delete variable 'x' referenced in nested scope us coming from in python shows no traceback

2014-06-26 Thread Albert Hopkins
Albert Hopkins added the comment: You can close this one out. I don't even remember the use case anymore. -- ___ Python tracker ___ __

[issue20351] Add doc examples for DictReader and DictWriter

2014-06-26 Thread Charles-Axel Dein
Charles-Axel Dein added the comment: Updated patch following review. -- Added file: http://bugs.python.org/file35790/add_csvdict_examples.patch ___ Python tracker ___ ___

[issue21870] Ctrl-C doesn't interrupt simple loop

2014-06-26 Thread R. David Murray
Changes by R. David Murray : -- resolution: -> wont fix stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-

[issue18853] Got ResourceWarning unclosed file when running Lib/shlex.py demo

2014-06-26 Thread Ezio Melotti
Changes by Ezio Melotti : -- versions: -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue20351] Add doc examples for DictReader and DictWriter

2014-06-26 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- assignee: docs@python -> rhettinger nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list ma

[issue14460] In re's positive lookbehind assertion repetition works

2014-06-26 Thread py.user
py.user added the comment: Tim Peters wrote: > Should that raise an exception? >i += 0 >(?=a)b >(?=a)a These are another cases. The first is very special. The second and third are special too, but with different contents of assertion they can do useful work. While "(?=any contents){N}a" ne

[issue21151] winreg.SetValueEx causes crash if value = None

2014-06-26 Thread Claudiu Popa
Changes by Claudiu Popa : -- stage: patch review -> commit review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue19546] configparser leaks implementation detail

2014-06-26 Thread Claudiu Popa
Claudiu Popa added the comment: Łukasz, do you have some time to take a look at this patch? -- type: -> behavior versions: +Python 3.5 Added file: http://bugs.python.org/file35791/issue19546_1.patch ___ Python tracker

[issue18108] shutil.chown should support dir_fd and follow_symlinks keyword arguments

2014-06-26 Thread Claudiu Popa
Claudiu Popa added the comment: I got a failure on FreeBSD: [1/1] test_shutil test test_shutil failed -- Traceback (most recent call last): File "/tank/libs/cpython/Lib/test/test_shutil.py", line 1258, in test_chown shutil.chown(os.path.basename(filename), dir_fd=dirfd) File "/tank/libs/

[issue21875] Remove vestigial references to Classic Mac OS attributes in os.stat() and os.name docs

2014-06-26 Thread Ned Deily
New submission from Ned Deily: The documentation for os.stat() still contains references to optional stat fields that were supported on Classic Mac OS systems but are no longer supported in Python on Mac OS X: On Mac OS systems, the following attributes may also be available: st_rsize

[issue10312] intcatcher() can deadlock

2014-06-26 Thread Claudiu Popa
Changes by Claudiu Popa : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-

[issue10312] intcatcher() can deadlock

2014-06-26 Thread Claudiu Popa
Claudiu Popa added the comment: It's still in Python 2, though. -- nosy: +Claudiu.Popa resolution: out of date -> stage: resolved -> status: closed -> open versions: -Python 3.1, Python 3.2 ___ Python tracker __

[issue4346] PyObject_CallMethod changes the exception message already set by PyObject_GetAttr

2014-06-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset aa4b4487c7ad by Benjamin Peterson in branch '2.7': don't overwrite the error from PyObject_GetAttrString (closes #4346) http://hg.python.org/cpython/rev/aa4b4487c7ad -- nosy: +python-dev resolution: -> fixed stage: patch review -> resolved

[issue21875] Remove vestigial references to Classic Mac OS attributes in os.stat() and os.name docs

2014-06-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset 94f7cdab9f71 by Ned Deily in branch '2.7': Issue #21875: Remove vestigial references to Classic Mac OS in os module docs. http://hg.python.org/cpython/rev/94f7cdab9f71 New changeset d130a04fa6a1 by Ned Deily in branch '3.4': Issue #21875: Remove ves

[issue21875] Remove vestigial references to Classic Mac OS attributes in os.stat() and os.name docs

2014-06-26 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker ___ ___ Pytho

[issue4613] Can't figure out where SyntaxError: can not delete variable 'x' referenced in nested scope us coming from in python shows no traceback

2014-06-26 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs

<    1   2