Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Chris Angelico Newsgroups: comp.lang.python Subject: Re: Caret key quits idle on pt keyboard Date: Mon, 30 Nov 2015 19:44:50 +1100 Lines: 19 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Trace: news.uni-berlin.de y51GAx7bnsb27kFE62KPOwtQ5+k5cH4tFKMw+KjsAPow== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.017 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'cc:addr:python-list': 0.09; '(aka': 0.09; 'pressing': 0.09; 'python': 0.10; 'exception': 0.13; '12:30': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'hmm.': 0.16; 'idle.': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'subject:key': 0.16; 'wrote:': 0.16; 'windows': 0.20; '2015': 0.20; 'cc:2**0': 0.20; 'cc:addr:python.org': 0.20; '(on': 0.22; 'keyboard': 0.22; 'am,': 0.23; '(or': 0.23; "python's": 0.23; 'header:In-Reply-To:1': 0.24; 'mon,': 0.24; 'command': 0.26; 'message-id:@mail.gmail.com': 0.27; 'dos': 0.27; "can't": 0.32; 'run': 0.33; 'idle': 0.33; 'traceback': 0.33; 'received:google.com': 0.35; 'could': 0.35; 'nov': 0.35; 'but': 0.36; 'should': 0.36; 'received:209.85': 0.36; 'mode': 0.36; 'subject:: ': 0.37; 'there,': 0.37; 'received:209.85.213': 0.37; 'received:209': 0.38; '30,': 0.63; 'fire': 0.63; 'python-list': 0.66; 'prompt': 0.79; 'chrisa': 0.84; 'dias': 0.84; 'non-bmp': 0.84; 'quits.': 0.84; 'to:none': 0.91; 'safe.': 0.93 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type:content-transfer-encoding; bh=ap+MI+n9jbWxE3XjQn0zOMkgtH3CdY2x3VTFjeJx+LI=; b=Rj5R4hIqy1JgIItVVVrCap06X9nfv0KsDFfDbaBibMp7ihfjTUZ9unOMj4bDoQHb/S Wif2Rxzj7MyKVB3g4iiaj0pGZKNrz8HzY21ACStT23KG43dGtr3jm0Eqr39cKcgCYtHH eworcMBTw1B+hCaJKqrufb6OwR4GgnHGTz/FG9MN4shbeoTROvQVZLQWzYDpD9Q4ZcQk P2UoVYYDv8IXyrp1MAakAvTJlVjmttJLBVEzWhQQlZeFY9ZWy+h4hr6Juk5RnyT4FiFO /TPExEofyZBojGhAVu3czEkdMh5pJ/At4NWD00wqvLQxprgDhWbejzxgLoxgbPyj5Myk d9mA== X-Received: by 10.50.30.6 with SMTP id o6mr21096085igh.94.1448873090364; Mon, 30 Nov 2015 00:44:50 -0800 (PST) In-Reply-To: X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Xref: csiph.com comp.lang.python:99730 On Mon, Nov 30, 2015 at 12:30 AM, Osvaldo Dias dos Santos via Python-list wrote: > I can=E2=80=99t enter a caret in regex on a Portuguese keyboard because b= y pressing it, IDLE quits. > Any help ? Hmm. This could be part of the known issues with Tk (on which Idle depends) and non-BMP characters, but a caret should be safe. What OS and Python are you running? Can you pull up a terminal (aka command prompt or console) and run "python3 -m idlelib.idle"? (Or "python2 -m idlelib.idle" if you're using Python 2.7.) Then try it again, and see if there's an exception traceback shown in the terminal. If you can't get Idle to start from a terminal, try opening Python's interactive mode (if you have a standard Windows installation, you should have a Python command line in the Start menu). From there, type "import idlelib.idle" and it should fire up Idle. ChrisA