[issue15094] Incorrectly placed #endif in _tkinter.c.

2012-07-22 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed. Thanks, Serhiy! -- assignee: -> asvetlov nosy: +asvetlov resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker

[issue15094] Incorrectly placed #endif in _tkinter.c.

2012-07-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset 657673a37dd3 by Andrew Svetlov in branch 'default': #15094: fix incorrectly placed #endif in _tkinter.c. http://hg.python.org/cpython/rev/657673a37dd3 -- nosy: +python-dev ___ Python tracker

[issue15094] Incorrectly placed #endif in _tkinter.c.

2012-07-07 Thread Brian Brazil
Brian Brazil added the comment: Issue confirmed, patch looks good. -- nosy: +bbrazil ___ Python tracker ___ ___ Python-bugs-list mail

[issue15094] Incorrectly placed #endif in _tkinter.c.

2012-06-17 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue15094] Incorrectly placed #endif in _tkinter.c.

2012-06-17 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : #endif is placed incorrectly in _tkinter.c. As a result, braces are unbalanced when TCL_UTF_MAX != 3. This is Python 3.3 only error. There are no tests yet. Just wait a few years until TCL will support non-BMP characters or use a time machine. --