Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Random832 Newsgroups: comp.lang.python Subject: Re: Well, I finally ran into a Python Unicode problem, sort of Date: Sun, 03 Jul 2016 16:49:09 -0400 Lines: 14 Message-ID: References: <0589521b-648a-47c1-8afa-6f746e0fb901@googlegroups.com> <87inwndp4h.fsf@universite-de-strasbourg.fr.invalid> <87r3bbgf2z.fsf@elektro.pacujo.net> <87lh1jge4l.fsf@elektro.pacujo.net> <1467578949.2994620.655791441.55D98FA3@webmail.messagingengine.com> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Trace: news.uni-berlin.de beGHuMmIflMlzfvEHiERCgufGszKxbaH2ATK7vinzVqw== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'subject:Python': 0.05; 'strings.': 0.07; 'received:internal': 0.09; 'subject:into': 0.09; 'python': 0.10; 'python.': 0.11; '*any*': 0.16; 'hint:': 0.16; 'identifiers,': 0.16; 'identifiers.': 0.16; 'message- id:@webmail.messagingengine.com': 0.16; 'received:10.202': 0.16; 'received:10.202.2': 0.16; 'received:10.202.2.212': 0.16; 'received:66.111': 0.16; 'received:66.111.4': 0.16; 'received:66.111.4.27': 0.16; 'received:io': 0.16; 'received:messagingengine.com': 0.16; 'received:out3-smtp.messagingengine.com': 0.16; 'received:psf.io': 0.16; 'subject:Unicode': 0.16; 'whatsoever': 0.16; 'wrote:': 0.16; 'subject:problem': 0.22; '(or': 0.23; 'passing': 0.23; 'header:In- Reply-To:1': 0.24; "doesn't": 0.26; 'character': 0.29; 'allows': 0.30; 'symbol': 0.33; 'to:addr:python-list': 0.36; 'subject:: ': 0.37; 'received:10': 0.37; 'being': 0.37; 'received:66': 0.38; 'christian': 0.38; 'does': 0.39; 'to:addr:python.org': 0.40; 'header:Message-Id:1': 0.61; 'more': 0.63; 'jul': 0.72; 'gollwitzer': 0.84 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=fastmail.com; h= content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-sasl-enc :x-sasl-enc; s=mesmtp; bh=PsckfGfggl045nAv0yBR/pHPNEw=; b=kelLja /wikJC3oVan77qzhlM6Wjvw+ImyIxt768vYeQ489qdHksCccndPUOGEAcc3I44FY Ge1cj+eM0MfTToPreC2iGjCwLbXZcSTxVU0SfCxlqS2cJOCEIVQ/9StWdaeQDXb3 Ow9vGcUi0WFgJLK7ti7hSi+3s3whXgHPiGIaI= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-sasl-enc:x-sasl-enc; s=smtpout; bh=PsckfGfggl045nA v0yBR/pHPNEw=; b=Er1NLgsvvGkIrtMHpTcYQYcRE236guTl0wQ26aV3sM2JeqG 9iVxzrvMqrrm4CE4bDNo/7IZK7p9zI7LbMXl6JtP73/u/pMokZIv8IitfRl/h/pF eiyeffeww/QcwxmmS9RZ3xaIBG5hwxcyzK8jOGFi+h0bZYwhJoFmN2hZknrU= X-Sasl-Enc: 3cJ2HwMD+5SFTfUuyK+J6J+rXvXckw5pJJCkIlwDgz+I 1467578949 X-Mailer: MessagingEngine.com Webmail Interface - ajax-15e5213e In-Reply-To: <87lh1jge4l.fsf@elektro.pacujo.net> X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Mailman-Original-Message-ID: <1467578949.2994620.655791441.55D98FA3@webmail.messagingengine.com> X-Mailman-Original-References: <0589521b-648a-47c1-8afa-6f746e0fb901@googlegroups.com> <87inwndp4h.fsf@universite-de-strasbourg.fr.invalid> <87r3bbgf2z.fsf@elektro.pacujo.net> <87lh1jge4l.fsf@elektro.pacujo.net> Xref: csiph.com comp.lang.python:111009 On Sun, Jul 3, 2016, at 07:22, Marko Rauhamaa wrote: > Christian Gollwitzer : > > Am 03.07.16 um 13:01 schrieb Marko Rauhamaa: > >> Scheme allows *any* characters whatsoever in identifiers. > > > > Parentheses? > > Yes. > > Hint: Python allows *any* characters whatsoever in strings. Being able to put any character in a symbol doesn't make those strings identifiers, any more than passing them to getattr/setattr (or __import__, something's __name__, etc) does in Python.