[issue19085] Add tkinter basic options tests

2013-11-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 92e268f2719e by Serhiy Storchaka in branch '3.3': Issue #19085: Added basic tests for all tkinter widget options. http://hg.python.org/cpython/rev/92e268f2719e New changeset ab7c2c1d349c by Serhiy Storchaka in branch 'default': Issue #19085: Added b

[issue10734] test_ttk test_heading_callback fails with newer Tk 8.5

2013-11-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0554e2d37bf8 by Serhiy Storchaka in branch '2.7': Issue #10734: Fix and re-enable test_ttk test_heading_callback. http://hg.python.org/cpython/rev/0554e2d37bf8 New changeset a58fce53e873 by Serhiy Storchaka in branch '3.3': Issue #10734: Fix and re-

[issue10734] test_ttk test_heading_callback fails with newer Tk 8.5

2013-11-02 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6157] Tkinter.Text: changes for bbox, debug, and edit methods.

2013-11-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a patch with tests. Only fix for tkinter.Text.debug() (and perhaps test_bbox) should be backported to maintenance releases. -- versions: +Python 2.7, Python 3.3 ___ Python tracker

[issue19320] Tkinter tests ran with wantobjects is false

2013-11-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: But because there are some other tkinter tests which fail when wantobjects is false, skipping these tests can be reasonable alternative. -- ___ Python tracker __

[issue6157] Tkinter.Text: changes for bbox, debug, and edit methods.

2013-11-02 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : Added file: http://bugs.python.org/file32462/tkinter_text_changes_2.patch ___ Python tracker ___ ___ Python-bugs-

[issue19467] asyncore documentation: redirect users to the new asyncio module

2013-11-02 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: Personally I see little value in creating a section in the doc which explains how to port code from asyncore/chat to asyncio. Current asyncore/chat doc has just a couple of code samples which do not justify the effort, IMO. I think a deprecation warning wit

[issue19437] More failures found by pyfailmalloc

2013-11-02 Thread Stefan Krah
Stefan Krah added the comment: Ok, I found it. It was an assert() in debug mode that the MemoryError from PyObject_IsInstance() was swallowed. In production mode AttributeError would have been raised. Program received signal SIGABRT, Aborted. 0x771e0475 in *__GI_raise (sig=) at ../np

[issue18996] unittest: more helpful truncating long strings

2013-11-02 Thread Vajrasky Kok
Vajrasky Kok added the comment: Serhiy, you still left debugging code there. Lib/unittest/test/test_case.py, line 879 and line 880. #print() #print(str(cm.exception)) -- nosy: +vajrasky ___ Python tracker

[issue13637] binascii.a2b_* functions could accept unicode strings

2013-11-02 Thread Vajrasky Kok
Vajrasky Kok added the comment: Here is another patch to better the error message. Right now, the error message when wrong input sent to unhexlify is a little bit funny. >>> import binascii >>> binascii.unhexlify(3) Traceback (most recent call last): File "", line 1, in TypeError: argument s

[issue19085] Add tkinter basic options tests

2013-11-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset cee56ef59a6a by Serhiy Storchaka in branch 'default': Issue #19085. Try to fix tkinter tests on Windows. http://hg.python.org/cpython/rev/cee56ef59a6a -- ___ Python tracker

[issue4965] Can doc index of html version be separately scrollable?

2013-11-02 Thread Ezio Melotti
Ezio Melotti added the comment: I'm going to close this as fixed then. If other people report problems I can always apply the patch and/or try to figure out something else. -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed __

[issue19479] textwrap.dedent doesn't work properly with strings containing CRLF

2013-11-02 Thread Alexis Daboville
New submission from Alexis Daboville: If a string contains an empty line and is using CRLF newlines instead of LF newlines textwrap.dedent doesn't work properly: it returns the original string w/o dedenting it. As far as I can tell it's because it considers the empty string to be the longest

[issue15114] Deprecate strict mode of HTMLParser

2013-11-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0a56709eb798 by Ezio Melotti in branch 'default': #15114: The html.parser module now raises a DeprecationWarning when the strict argument of HTMLParser or the HTMLParser.error method are used. http://hg.python.org/cpython/rev/0a56709eb798 -

[issue19085] Add tkinter basic options tests

2013-11-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 278d15021d9a by Serhiy Storchaka in branch '2.7': Issue #19085: Fix Tkinter tests with Tcl/Tk 8.4. http://hg.python.org/cpython/rev/278d15021d9a -- ___ Python tracker

[issue19286] error: can't copy '': doesn't exist or not a regular file

2013-11-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 22bac968e226 by Jason R. Coombs in branch '2.7': Issue #19286: Adding test demonstrating the failure when a directory is found in the package_data globs. http://hg.python.org/cpython/rev/22bac968e226 New changeset 0a1cf947eff6 by Jason R. Coombs in

[issue19085] Add tkinter basic options tests

2013-11-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset f25679db52fb by Serhiy Storchaka in branch '3.3': Issue #19085: Fixed some Tkinter tests on Windows. http://hg.python.org/cpython/rev/f25679db52fb New changeset 4a2afda8f187 by Serhiy Storchaka in branch '2.7': Issue #19085: Fixed some Tkinter tests

[issue19480] HTMLParser fails to handle some characters in the starttag

2013-11-02 Thread Ezio Melotti
New submission from Ezio Melotti: HTMLParser fails to handle some characters in the starttag, e.g. should see 'a$b' as name but currently stops at $. The attached patch fixes the issue. -- assignee: ezio.melotti files: starttag.diff keywords: patch messages: 201980 nosy: ezio.melotti

[issue19286] error: can't copy '': doesn't exist or not a regular file

2013-11-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset d80207d15294 by Jason R. Coombs in branch '3.2': Issue #19286: Adding test demonstrating the failure when a directory is found in the package_data globs. http://hg.python.org/cpython/rev/d80207d15294 New changeset 265d369ad3b9 by Jason R. Coombs in

[issue19286] error: can't copy '': doesn't exist or not a regular file

2013-11-02 Thread Jason R. Coombs
Changes by Jason R. Coombs : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue19478] Add ability to prefix posix semaphore names created by multiprocessing module

2013-11-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1b5506fc6a50 by Richard Oudkerk in branch 'default': Issue #19478: Make choice of semaphore prefix more flexible. http://hg.python.org/cpython/rev/1b5506fc6a50 -- nosy: +python-dev ___ Python tracker

[issue19480] HTMLParser fails to handle some characters in the starttag

2013-11-02 Thread Ezio Melotti
Ezio Melotti added the comment: Attached a patch for 2.7. The patch removes a "public" name/regex (tagfind_tolerant). The name is not documented and it's supposed to be private like all the other top-level names on HTMLParser, and even creating an alias with tagfind_tolerant = tagfind won't

[issue6160] Tkinter.Spinbox: fix for bbox and removed some uninteresting returns

2013-11-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Patch updated to tip and added test. Terry, do you think this patch should be applied to maintenance release? It change a behavior. However current behavior doesn't look desirable. -- Added file: http://bugs.python.org/file32466/Spinbox_fixes_2.patch

[issue16472] Distutils+mingw links agains msvcr90, while python27.dll is linked agains msvcrt

2013-11-02 Thread Nicolas Frattaroli
Nicolas Frattaroli added the comment: I had the same issue. It wouldn't just crash, it would crash sometimes, and not other times. About 50% of the time. The solution to remove msvcr as suggested by Marek did work. I didn't apply his patch, however, because I'm using a MinGW64Compiler definiti

[issue19480] HTMLParser fails to handle some characters in the starttag

2013-11-02 Thread R. David Murray
R. David Murray added the comment: In the maintenance releases you should leave tagfind_tolerant defined with its old value, with a comment that it is internal, no longer used, and has been removed in 3.4. -- ___ Python tracker

[issue17762] platform.linux_distribution() should honor /etc/os-release

2013-11-02 Thread Andrei Dorian Duma
Andrei Dorian Duma added the comment: New patch. Added tests and fixed uncaught OSError. -- Added file: http://bugs.python.org/file32467/add_os_release_support_2.patch ___ Python tracker ___

[issue6160] Tkinter.Spinbox: fix bbox method

2013-11-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: The bbox fix and the return change are unrelated issues. Let us separate them. There are bbox methods for Grid, Canvax, Listbox, Text, and Spinbox. All are documented as returning tuples of (4) ints, though there are two different interpretations. The first 4

[issue17883] Fix buildbot testing of Tkinter

2013-11-02 Thread Zachary Ware
Zachary Ware added the comment: If there are no objections, I'd like to commit both of these in the next day or two (which is nice to be able to say :)). -- nosy: +brian.curtin stage: committed/rejected -> patch review ___ Python tracker

[issue19440] Clean up test_capi

2013-11-02 Thread Zachary Ware
Zachary Ware added the comment: If there are no objections, I'd like to commit this one soon. -- nosy: +brian.curtin stage: -> patch review ___ Python tracker ___ __

[issue19440] Clean up test_capi

2013-11-02 Thread Zachary Ware
Changes by Zachary Ware : -- assignee: -> zach.ware ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue19391] Fix PCbuild/readme.txt in 2.7 and 3.3

2013-11-02 Thread Zachary Ware
Changes by Zachary Ware : -- assignee: docs@python -> zach.ware stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list ma

[issue19481] IDLE hangs while printing instance of Unicode subclass

2013-11-02 Thread Tim Peters
New submission from Tim Peters: This showed up on StackOverflow: http://stackoverflow.com/questions/19749757/print-is-blocking-forever-when-printing-unicode-subclass-instance-from-idle They were using 32-bit Python 2.7.5 on Windows 7; I reproduced using the same Python on Windows Vista. To re

[issue19391] Fix PCbuild/readme.txt in 2.7 and 3.3

2013-11-02 Thread Vajrasky Kok
Vajrasky Kok added the comment: Zachary, perharps you could make a diff with mercurial so we can have Rietveld review link. I don't know whether git can do that or not. -- nosy: +vajrasky ___ Python tracker __

[issue19391] Fix PCbuild/readme.txt in 2.7 and 3.3

2013-11-02 Thread Zachary Ware
Zachary Ware added the comment: These diffs are produced by `hg diff --git`. If I'm not mistaken, the reason there is no review link is because these patches are not against default branch. Here's one without the `--git` option though, just to see if I'm wrong :). If I am, I'll replace all

[issue19391] Fix PCbuild/readme.txt in 2.7 and 3.3

2013-11-02 Thread Zachary Ware
Changes by Zachary Ware : Removed file: http://bugs.python.org/file32356/pcbuild_readme-2.7.diff ___ Python tracker ___ ___ Python-bugs-list m

[issue19391] Fix PCbuild/readme.txt in 2.7 and 3.3

2013-11-02 Thread Zachary Ware
Zachary Ware added the comment: How wrong I was... -- Added file: http://bugs.python.org/file32469/pcbuild_readme-2.7.diff ___ Python tracker ___

[issue19391] Fix PCbuild/readme.txt in 2.7 and 3.3

2013-11-02 Thread Zachary Ware
Changes by Zachary Ware : Removed file: http://bugs.python.org/file32354/pcbuild_readme-3.3.diff ___ Python tracker ___ ___ Python-bugs-list m

[issue19391] Fix PCbuild/readme.txt in 2.7 and 3.3

2013-11-02 Thread Zachary Ware
Changes by Zachary Ware : Added file: http://bugs.python.org/file32470/pcbuild_readme-3.3.diff ___ Python tracker ___ ___ Python-bugs-list mai

[issue19391] Fix PCbuild/readme.txt in 2.7 and 3.3

2013-11-02 Thread Zachary Ware
Changes by Zachary Ware : Removed file: http://bugs.python.org/file32468/pcbuild_readme-2.7.diff-w-no-git ___ Python tracker ___ ___ Python-bu

[issue19391] Fix PCbuild/readme.txt in 2.7 and 3.3

2013-11-02 Thread R. David Murray
R. David Murray added the comment: With the --git option, the rietveld service only tries against the default branch. Without the --git option, it can figure out the changeset the patch is based against and use that. -- nosy: +r.david.murray ___ Py

[issue19439] Build _testembed on Windows

2013-11-02 Thread Zachary Ware
Zachary Ware added the comment: This patch's changes to test_capi seem to work for Windows and keeps at least Gentoo and FreeBSD 10 happy. -- stage: -> patch review Added file: http://bugs.python.org/file32471/issue19439.v2.diff ___ Python tracker

[issue19482] _pickle build warnings on Fedora 19

2013-11-02 Thread Nick Coghlan
New submission from Nick Coghlan: Currently getting build warnings from _pickle.c: == building '_pickle' extension gcc -pthread -fPIC -Wno-unused-result -Werror=declaration-after-statement -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I./Include -I. -IInclude -I/usr

[issue4331] Add functools.partialmethod

2013-11-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 46d3c5539981 by Nick Coghlan in branch 'default': Issue #4331: Added functools.partialmethod http://hg.python.org/cpython/rev/46d3c5539981 -- nosy: +python-dev ___ Python tracker

[issue4331] Add functools.partialmethod

2013-11-02 Thread Nick Coghlan
Changes by Nick Coghlan : -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue19481] IDLE hangs while printing instance of Unicode subclass

2013-11-02 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +kbk, roger.serwy, serhiy.storchaka, terry.reedy type: -> behavior ___ Python tracker ___ ___

[issue19439] Build _testembed on Windows

2013-11-02 Thread Nick Coghlan
Nick Coghlan added the comment: I checked that test_capi still passed on Fedora as well. Only tweak I made before committing was to ensure that the read end of the test pipe used to determine the default pipe encoding was also closed. -- resolution: fixed -> stage: committed/rejected

[issue19439] Build _testembed on Windows

2013-11-02 Thread Nick Coghlan
Changes by Nick Coghlan : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___