Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!news.mixmin.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.010 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'that?': 0.05; '"who': 0.09; 'latter': 0.09; 'received:internal': 0.09; 'expecting': 0.16; 'message-id:@webmail.messagingengine.com': 0.16; 'received:10.202': 0.16; 'received:10.202.2': 0.16; 'received:66.111': 0.16; 'received:66.111.4': 0.16; 'received:messagingengine.com': 0.16; 'subject:unicode': 0.16; 'wrote:': 0.18; 'all,': 0.19; 'bit': 0.19; 'thu,': 0.19; 'header :In-Reply-To:1': 0.27; 'to:2**1': 0.27; 'characters': 0.30; 'code': 0.31; 'probably': 0.32; 'received:66': 0.35; "can't": 0.35; 'but': 0.35; 'two': 0.37; 'received:10': 0.37; 'handle': 0.38; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'how': 0.40; 'skip:u 10': 0.60; 'from:no real name:2**0': 0.61; 'header:Message-Id:1': 0.63; 'to:addr:gmail.com': 0.65; 'mar': 0.68; '2014,': 0.84 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=fastmail.us; h= message-id:from:to:mime-version:content-transfer-encoding :content-type:in-reply-to:references:subject:date; s=mesmtp; bh= M9++NGvrSQMsBYiAUz39wmppmME=; b=a6vCCWVBL7HcMvmCEG9z0V4nh9ZY+kSE o1AXyYIa0Koq8XYp1O78hy590NOnExH0QAtCvUp5cRI5QK62xQSIQ3d6t6CjHY4u Sw/UlcJ6jTaUzMjx6j/zTfwCMz1m2oGVx040Z8T47a5kHzWg5h3olj8pZzYh1hck B79y1CbjN2A= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=message-id:from:to:mime-version :content-transfer-encoding:content-type:in-reply-to:references :subject:date; s=smtpout; bh=M9++NGvrSQMsBYiAUz39wmppmME=; b=G+P Yz9UhuOLFwJVo8nRMKml3Zj8gEiMhLfhZVFc3TmS13NGWLMJJAGRzO01Lo1w+7t1 2j2NUiBAHCVXSLwZ30nypTIpMMP3UDsNnhueZ/e4Cj1TejPPDwpw87bGEi0Pzitg chnXUbjd3fpcXsd26h4OBwrO9v/O/z9//XZ9F/EE= X-Sasl-Enc: jsER1EZrdjIgGvUK3C8lLimEF9wnGbCgfHy6Hcbx3Oxo 1396032945 From: random832@fastmail.us To: Rustom Mody , python-list@python.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain X-Mailer: MessagingEngine.com Webmail Interface - ajax-8832fc58 In-Reply-To: References: <5331D902.3030902@gmail.com> <53320793.8070501@stoneleaf.us> <533241C0.8020109@mrabarnett.plus.com> <53329549.1000208@rece.vub.ac.be> Subject: Re: unicode as valid naming symbols Date: Fri, 28 Mar 2014 14:55:45 -0400 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 11 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1396032954 news.xs4all.nl 2839 [2001:888:2000:d::a6]:33724 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:69283 On Thu, Mar 27, 2014, at 11:10, Rustom Mody wrote: > Just out of curiosity how do/did you type that? > When I see an exotic denizen from the unicode-universe I paste it into > emacs and ask "Who are you?" > > But with your 'def' my emacs is going a bit crazy! Your emacs probably is using UCS-2 or UTF-16. The former can't handle characters above 65535 at all, the latter stores them as if they were two characters [so code that's not expecting them will handle them incorrectly]