[issue17736] Misleading method comment in _elementtree.c : get_attrib_from_keywords

2013-04-20 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +eli.bendersky stage: -> patch review versions: -Python 3.2, Python 3.5 ___ Python tracker ___ __

[issue17807] Generator cleanup without tp_del

2013-04-20 Thread Antoine Pitrou
Antoine Pitrou added the comment: Patch with added tests. -- Added file: http://bugs.python.org/file29962/gen3.patch ___ Python tracker ___ __

[issue17808] No code example for Event object in threading module

2013-04-20 Thread Andriy Mysyk
New submission from Andriy Mysyk: Documentation for Event objects in threading module could be more clear with a code example. http://docs.python.org/3.4/library/threading.html#event-objects -- messages: 187486 nosy: amysyk priority: normal severity: normal status: open title: No code

[issue17808] No code example for Event object in threading module

2013-04-20 Thread Andriy Mysyk
Andriy Mysyk added the comment: I will create a code example by the end of Sunday, April 21. -- ___ Python tracker ___ ___ Python-bugs

[issue17808] No code example for Event object in threading module

2013-04-20 Thread Andriy Mysyk
Andriy Mysyk added the comment: See the patch with a code example attached. -- assignee: -> docs@python components: +Documentation keywords: +patch nosy: +docs@python Added file: http://bugs.python.org/file29963/bug17808.patch ___ Python tracker

[issue17808] No code example for Event object in threading module

2013-04-20 Thread Andriy Mysyk
Andriy Mysyk added the comment: Example added to threading.rst For example, the following code demonstrates a controlled thread termination using an event object. The event is used to request the termination of several threads. import threading import time stopevent = threading.Event() cl

[issue17717] Set up nasm from external.bat

2013-04-20 Thread Zachary Ware
Zachary Ware added the comment: Could you elaborate on what you mean to be done? All I've ever had to do was run the nasm installer and add the install location to PATH. -- ___ Python tracker _

[issue17807] Generator cleanup without tp_del

2013-04-20 Thread Nick Coghlan
Nick Coghlan added the comment: Just a couple of minor comments on review. Everything else I looked for (including the path where a generator failing to stop during frame deallocation leads to reporting an unraisable exception) seemed fine. One aspect I find interesting is that we've had other

[issue17800] Add gc.needs_finalizing() to check if an object needs finalising

2013-04-20 Thread Nick Coghlan
Nick Coghlan added the comment: Antoine came up with a scheme (see issue 17807) that should eliminate the tp_del implementation from generator objects by moving the cleanup code to the frame deallocation. This will restore Guido's original assumption that types implemented in C won't need to

[issue17800] Add gc.needs_finalizing() to check if an object needs finalising

2013-04-20 Thread Alex Gaynor
Changes by Alex Gaynor : -- nosy: +alex, fijall ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue17809] FAIL: test_expanduser when $HOME ends with /

2013-04-20 Thread koobs
New submission from koobs: test_expanduser in test.test_posixpath.PosixPathTest fails when the users $HOME ends with "/" == FAIL: test_expanduser (test.test_posixpath.PosixPathTest) -

[issue15745] Numerous utime ns tests fail on FreeBSD w/ ZFS (update: and NetBSD w/ FFS, Solaris w/ UFS)

2013-04-20 Thread koobs
koobs added the comment: There's some work that's been in the FreeBSD bleachers since Jul 2012 to add futimens() and utimensat(), with some recent activity: RFC: futimens(2) and utimensat(2) - Jul 2012 http://lists.freebsd.org/pipermail/freebsd-arch/2012-February/012409.html RFC: futimens(2)

[issue17810] Implement PEP 3154 (pickle protocol 4)

2013-04-20 Thread Alexandre Vassalotti
New submission from Alexandre Vassalotti: I have restarted the work on PEP 3154. Stefan Mihaila had begun an implementation as part of the Google Summer of Code 2012. Unfortunately, he hit multiple roadblocks which prevented him to finish his work by the end of the summer. He previously shown

[issue15642] Integrate pickle protocol version 4 GSoC work by Stefan Mihaila

2013-04-20 Thread Alexandre Vassalotti
Alexandre Vassalotti added the comment: I have started a new implementation of PEP 3154 since Stefan hasn't been active on his. Moving the discussion to Issue #17810. -- dependencies: -Unbinding of methods resolution: -> out of date stage: patch review -> committed/rejected status: op

[issue17810] Implement PEP 3154 (pickle protocol 4)

2013-04-20 Thread Alexandre Vassalotti
Changes by Alexandre Vassalotti : -- dependencies: +Unbinding of methods ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

<    1   2