[issue11373] Fix 2 new typos in the docs

2011-03-03 Thread Bob Wintemberg
Bob Wintemberg added the comment: The following is a patch to fix this documentation issue in py3k. -- Added file: http://bugs.python.org/file20994/patch-3k.diff ___ Python tracker

[issue11357] Add support for PEP 381 -- Mirror Authenticity

2011-03-03 Thread Kelsey
Kelsey added the comment: Based on the feedback I have updated my patch, please review. An updated patch attached. Link to my distutils2 mq below: https://bitbucket.org/khightower/distutils2-patch-queue/qseries?apply=t&qs_apply=mirror-authenticity -- Added file: http://bugs.python.org

[issue11386] Fix exception thrown by bytearray.pop() for empty bytearrays

2011-03-03 Thread Eli Bendersky
Eli Bendersky added the comment: Committed into py3k, revision 88735 -- assignee: eli.bendersky -> rhettinger resolution: accepted -> versions: -Python 3.2 ___ Python tracker

[issue11386] Fix exception thrown by bytearray.pop() for empty bytearrays

2011-03-03 Thread Eli Bendersky
Eli Bendersky added the comment: Committed into release32-maint, revision 88739 -- ___ Python tracker ___ ___ Python-bugs-list mailin

[issue11386] Fix exception thrown by bytearray.pop() for empty bytearrays

2011-03-03 Thread Eli Bendersky
Eli Bendersky added the comment: Can't find other instances of this bug, so I'm closing the issue. -- status: open -> closed ___ Python tracker ___ _

[issue11386] Fix exception thrown by bytearray.pop() for empty bytearrays

2011-03-03 Thread Raymond Hettinger
Raymond Hettinger added the comment: Does Python 2.7 have an issue? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue11388] Implement MutableSequence.clear()

2011-03-03 Thread Eli Bendersky
Eli Bendersky added the comment: Committed in revision 88740 The non-abstract methods of MutableSequence and other classes currently seem to have no unit-tests. Any ideas about the best testing strategy for them? -- ___ Python tracker

[issue11394] No Tools/demo on Windows

2011-03-03 Thread anatoly techtonik
New submission from anatoly techtonik : Changelog for Python 3.2 contains this paragraph: "- Issue #7962: The Demo directory is gone. Most of the old and unmaintained demos have been removed, others integrated in documentation or a new Tools/demo subdirectory." However, there is no "demo" ins

[issue10502] Add unittestguirunner to Tools/

2011-03-03 Thread anatoly techtonik
anatoly techtonik added the comment: Not present on Windows. See also issue #11394 -- nosy: +techtonik ___ Python tracker ___ ___ Pyt

[issue11386] Fix exception thrown by bytearray.pop() for empty bytearrays

2011-03-03 Thread Eli Bendersky
Eli Bendersky added the comment: Indeed it does - good catch :-) I'll backport to 2.7 soon -- ___ Python tracker ___ ___ Python-bugs-

[issue11394] No Tools/demo on Windows

2011-03-03 Thread anatoly techtonik
anatoly techtonik added the comment: See also #10502. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue11395] print(s) fails on Windows with long strings

2011-03-03 Thread Case Van Horsen
New submission from Case Van Horsen : Python 3.2 fails when printing long strings. C:\Python32>python Python 3.2 (r32:88445, Feb 20 2011, 21:30:00) [MSC v.1500 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> print("a"*66000) Traceback (most re

[issue11386] Fix exception thrown by bytearray.pop() for empty bytearrays

2011-03-03 Thread Eli Bendersky
Eli Bendersky added the comment: Committed to release27-maint, revision 88741 -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue11388] Implement MutableSequence.clear()

2011-03-03 Thread Georg Brandl
Georg Brandl added the comment: Creating a minimal concrete subclass and testing with that would be the obvious thing. -- ___ Python tracker ___ ___

[issue11368] xml.etree.ElementTree.Element should have a reference to parent

2011-03-03 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> docs@python components: +Documentation -XML nosy: +docs@python ___ Python tracker ___ ___ P

[issue11368] Document why xml.etree.ElementTree.Element has no reference to parent

2011-03-03 Thread Georg Brandl
Changes by Georg Brandl : -- title: xml.etree.ElementTree.Element should have a reference to parent -> Document why xml.etree.ElementTree.Element has no reference to parent ___ Python tracker _

[issue11391] mmap write segfaults if PROT_WRITE bit is not set in prot

2011-03-03 Thread Charles-Francois Natali
Charles-Francois Natali added the comment: > Patch looks mostly good. Why do you use ~PROT_WRITE instead of > PROT_READ|PROT_EXEC as in your example? Because I'm not sure that PROT_EXEC is supported by all platforms. See http://pubs.opengroup.org/onlinepubs/007908799/xsh/mmap.html : "The imple

[issue11395] print(s) fails on Windows with long strings

2011-03-03 Thread Amaury Forgeot d'Arc
Changes by Amaury Forgeot d'Arc : -- nosy: +pitrou priority: normal -> high ___ Python tracker ___ ___ Python-bugs-list mailing list U

<    1   2