Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!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=1355931231; bh=ElOTsoM9SPoT75c3s3VYP0LGFaH7cfnhyt2fL5uDhYo=; h=Message-ID:Date:From:MIME-Version:To:CC:Subject:References: In-Reply-To:Content-Type:Content-Transfer-Encoding; b=R1ZIePrOi0OSA+XSpwWOfmKHH8Rv/5m8FaXHlFhOgeBIN5+VdgbFHyXpsax7YfrxK e0Mw1OgdSD+hYnv+rf3tFFLsHW5G6MtHyWOKNsmTL8N8SHoL8TMgDut/jfD34RduP4 oPlWpQ7Tv7HD9V/Y+/EPFLbJgDO1z1m0zoyMHLzQ= Date: Wed, 19 Dec 2012 16:33:50 +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: Stefan Krah Subject: Re: Py 3.3, unicode / upper() References: <2adb4a25-8ea3-441f-b8c0-ee6c87e4b19f@googlegroups.com> <20121219150140.GA24402@sleipnir.bytereef.org> In-Reply-To: <20121219150140.GA24402@sleipnir.bytereef.org> 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: 24 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1355931232 news.xs4all.nl 6928 [2001:888:2000:d::a6]:50131 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:35133 Am 19.12.2012 16:01, schrieb Stefan Krah: > The uppercase ß isn't really needed, since ß does not occur at the beginning > of a word. As far as I know, most Germans wouldn't even know that it has > existed at some point or how to write it. I think Python 3.3+ is using uppercase mapping (uc) instead of simple upper case (suc). Some background: The old German Fractur has three variants of the letter S: capital s: S long s: ſ round s: s. ß is a ligature of ſs. ſ is usually used at the beginning or middle of a syllable while s is used at the end of a syllable. Compare Wachſtube (Wach-Stube == guard room) to Wachstube (Wachs-Tube == tube of wax). :) Christian