Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed1.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 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=python.org; s=200901; t=1355928744; bh=HULj2Ieu6kZK9nb25/pUMIj4uSZDaxNaOAoJIv0qEMU=; h=Message-ID:Date:From:MIME-Version:To:CC:Subject:References: In-Reply-To:Content-Type:Content-Transfer-Encoding; b=f/JDXaXSiHVdAWilwjoTSKQZ/mSv0iwMHTMLHFEVWwywcmi4k6EAYbMKK4wcSzbns YEUpVodt6sjgnl8RGmurVgzZzKpZZUfwDs0vLNk4pkBmobwCcin+cMG7q2a5jy8kTZ jffQaZ3rXglTmyqmbqUPXv/HT+5M2mUQ8qRNPOew= Date: Wed, 19 Dec 2012 15:52:23 +0100 From: Christian Heimes User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: wxjmfauth@gmail.com Subject: Re: Py 3.3, unicode / upper() References: <2adb4a25-8ea3-441f-b8c0-ee6c87e4b19f@googlegroups.com> In-Reply-To: <2adb4a25-8ea3-441f-b8c0-ee6c87e4b19f@googlegroups.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: python-list@python.org 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: 15 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1355928746 news.xs4all.nl 6974 [2001:888:2000:d::a6]:49105 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:35125 Am 19.12.2012 15:23, schrieb wxjmfauth@gmail.com: > But, this is not the problem. > I was suprised to discover this: > >>>> 'Straße'.upper() > 'STRASSE' > > I really, really do not know what I should think about that. > (It is a complex subject.) And the real question is why? It's correct. LATIN SMALL LETTER SHARP S doesn't have an upper case form. However the unicode database specifies an upper case mapping from ß to SS. http://codepoints.net/U+00DF Christian