[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

[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

[issue10734] test_ttk test_heading_callback fails with newer Tk 8.5

2013-11-02 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- assignee: - serhiy.storchaka ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10734 ___ ___

[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 rep...@bugs.python.org

[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 rep...@bugs.python.org

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

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

[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

[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=optimized

[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 rep...@bugs.python.org

[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 stdin, line 1, in module TypeError:

[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 rep...@bugs.python.org

[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 rep...@bugs.python.org

[issue19286] error: can't copy 'dirname': 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

[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

[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. a$b 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:

[issue19286] error: can't copy 'dirname': 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

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

2013-11-02 Thread Jason R. Coombs
Changes by Jason R. Coombs jar...@jaraco.com: -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19286 ___

[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:

[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

[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 rep...@bugs.python.org http://bugs.python.org/issue17762

[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 rep...@bugs.python.org http://bugs.python.org/issue19440

[issue19440] Clean up test_capi

2013-11-02 Thread Zachary Ware
Changes by Zachary Ware zachary.w...@gmail.com: -- assignee: - zach.ware ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19440 ___ ___

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

2013-11-02 Thread Zachary Ware
Changes by Zachary Ware zachary.w...@gmail.com: -- assignee: docs@python - zach.ware stage: - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19391 ___

[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

[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 rep...@bugs.python.org

[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 zachary.w...@gmail.com: Removed file: http://bugs.python.org/file32356/pcbuild_readme-2.7.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19391 ___

[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 rep...@bugs.python.org http://bugs.python.org/issue19391 ___

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

2013-11-02 Thread Zachary Ware
Changes by Zachary Ware zachary.w...@gmail.com: Removed file: http://bugs.python.org/file32354/pcbuild_readme-3.3.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19391 ___

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

2013-11-02 Thread Zachary Ware
Changes by Zachary Ware zachary.w...@gmail.com: Added file: http://bugs.python.org/file32470/pcbuild_readme-3.3.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19391 ___

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

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

[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 ___