Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #28167
| Path | csiph.com!usenet.pasdenom.info!dedibox.gegeweb.org!gegeweb.eu!nntpfeed.proxad.net!proxad.net!feeder1-2.proxad.net!usenet-fr.net!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <arnodel@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.001 |
| X-Spam-Evidence | '*H*': 1.00; '*S*': 0.00; 'python.': 0.02; 'subject:bug': 0.05; 'suppress': 0.07; 'tkinter': 0.07; 'inserted': 0.09; 'received:mail-vb0-f46.google.com': 0.09; 'bug': 0.10; 'gui': 0.11; 'subject:Entry': 0.16; 'subject:Tkinter': 0.16; 'tkinter.': 0.16; 'widget': 0.17; 'received:209.85.212.46': 0.18; 'mostly': 0.20; 'all,': 0.21; 'i.e.': 0.27; 'message- id:@mail.gmail.com': 0.27; 'received:209.85.212': 0.28; 'fine': 0.28; "i'm": 0.29; 'gets': 0.32; 'to:addr:python-list': 0.33; 'entry': 0.33; 'received:google.com': 0.34; 'thanks': 0.34; 'received:209.85': 0.35; 'there': 0.35; 'but': 0.36; 'stock': 0.36; 'received:209': 0.37; 'to:addr:python.org': 0.39; 'header:Received:5': 0.40; 'press': 0.71; 'to:name:python': 0.84; 'widgets:': 0.84 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=/1xJC0AAZjyljQqh/MZx3f/Au8zb7KJBkLGuJ96ghkg=; b=HrKtZBbFH3EigONrohqdY9+ST+Rv/NS2BXoS6aemNNW99bMW1Kl+OhnJy9uyGU1N3U YxjMP7PXY13KlURJIG+MaQDzRMouDYyqkWMnZtQYLXnVsn3xJIw72p9zCrGLjwO4stCX z68V21J3RcAakT9H+8Fl9s8l5gioIJCoDw0EzsMxu/791WAyHSY3gGQcDOc4EMjuYO0m kVnB0pUqiKQrjSJAhf1NNPU5EZbYoDze7t9D5Mj6Onnn1yud9dpVLT2ZB2LWsh9a8Gz8 xmKx47nZ0ruD5J4OwNy+yFbwSVVPO6da9hf0KhIa7f+TwLL4PjVdtvrOza1HNdMWVqHo RP/A== |
| MIME-Version | 1.0 |
| Date | Fri, 31 Aug 2012 11:18:36 +0100 |
| Subject | Tkinter bug in Entry widgets on OS X |
| From | Arnaud Delobelle <arnodel@gmail.com> |
| To | Python <python-list@python.org> |
| Content-Type | text/plain; charset=UTF-8 |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.12 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.4004.1346408318.4697.python-list@python.org> (permalink) |
| Lines | 16 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1346408318 news.xs4all.nl 6952 [2001:888:2000:d::a6]:52327 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:28167 |
Show key headers only | View raw
Hi all, I'm writing a small GUI on OS X (v. 10.7.4) using Tkinter. I'm using stock Python. It mostly works fine but there is a bug in Entry widgets: if and Entry widget has focus and I press the UP arrow, a "\uf700" gets inserted in the widget. If I press the DOWN arrow, a "\uf701" gets inserted. I'm very inexperienced with Tkinter (I've never used it before). All I'm looking for is a workaround, i.e. a way to somehow suppress that output. Thanks in advance, -- Arnaud
Back to comp.lang.python | Previous | Next — Next in thread | Find similar | Unroll thread
Tkinter bug in Entry widgets on OS X Arnaud Delobelle <arnodel@gmail.com> - 2012-08-31 11:18 +0100
Re: Tkinter bug in Entry widgets on OS X Kevin Walzer <kw@codebykevin.com> - 2012-08-31 10:25 -0400
Re: Tkinter bug in Entry widgets on OS X Arnaud Delobelle <arnodel@gmail.com> - 2012-08-31 16:18 +0100
Re: Tkinter bug in Entry widgets on OS X Kevin Walzer <kw@codebykevin.com> - 2012-08-31 11:21 -0400
Re: Tkinter bug in Entry widgets on OS X Alister <alister.ware@ntlworld.com> - 2012-08-31 15:41 +0000
Re: Tkinter bug in Entry widgets on OS X Arnaud Delobelle <arnodel@gmail.com> - 2012-08-31 20:05 +0100
Re: Tkinter bug in Entry widgets on OS X Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2012-08-31 15:30 -0400
Re: Tkinter bug in Entry widgets on OS X Peter Otten <__peter__@web.de> - 2012-09-01 12:30 +0200
Re: Tkinter bug in Entry widgets on OS X Arnaud Delobelle <arnodel@gmail.com> - 2012-09-01 13:56 +0100
Re: Tkinter bug in Entry widgets on OS X "Russell E. Owen" <rowen@uw.edu> - 2012-09-13 13:33 -0700
csiph-web