Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!newsfeed.xs4all.nl!newsfeed5.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.074 X-Spam-Evidence: '*H*': 0.86; '*S*': 0.01; 'sure.': 0.05; 'names.': 0.07; "(it's": 0.09; 'caches': 0.16; 'confuses': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'roy': 0.16; 'such.': 0.16; 'uppercase': 0.16; 'wrote:': 0.16; 'header :In-Reply-To:1': 0.22; 'knowing': 0.23; 'pm,': 0.24; 'aug': 0.24; 'windows': 0.26; 'urls': 0.28; 'server': 0.29; '(even': 0.29; 'message-id:@mail.gmail.com': 0.29; '(both': 0.30; 'situations': 0.30; 'sun,': 0.30; 'least': 0.31; 'to:addr:python-list': 0.33; 'file': 0.36; 'but': 0.37; 'received:google.com': 0.38; 'received:209.85': 0.38; 'easier': 0.38; 'subject:: ': 0.39; 'to:addr:python.org': 0.39; 'case': 0.39; "it's": 0.40; 'browser': 0.61; 'instantly': 0.67; 'become': 0.71; 'subject:line': 0.73; 'article': 0.76; '11:46': 0.84; '\xa0but': 0.84; 'document.': 0.91; 'plays': 0.91; 'redirect': 0.91; 'urls,': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; bh=+HMnOddTVMdZjTdFISw1T74iaKusFdRlKg2P4rp90Qw=; b=gkrHgm5uUydgjVezeFHuknifLlJXF2hecoPcDLKLkmopHQRt4S35RKPGax/hcL423b MJTAwRKvdr0ALMowSsRPnO2YjV40nKvVYh3FsHsSk9As0Q5V1TR2sJE7QTDirZtlfiQw 9b4g1FjkwiXIxid6jq82GDp/WKLKWNkBTrCsU= MIME-Version: 1.0 In-Reply-To: References: <1312951356.77394.YahooMailNeo@web121518.mail.ne1.yahoo.com> <4e43cb2a$0$29986$c3e8da3$5496439d@news.astraweb.com> <74c2421f-28a0-4a8d-bf74-4eebacfb74f1@d7g2000vbv.googlegroups.com> <92b8f192-d7fc-4c60-87ad-71b12652f3a2@k8g2000yqk.googlegroups.com> <4e45ab9d$0$30002$c3e8da3$5496439d@news.astraweb.com> <4e4774ed$0$29982$c3e8da3$5496439d@news.astraweb.com> <4e47db26$0$30002$c3e8da3$5496439d@news.astraweb.com> Date: Mon, 15 Aug 2011 00:02:46 +0100 Subject: Re: allow line break at operators From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 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: 21 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1313362968 news.xs4all.nl 23911 [2001:888:2000:d::a6]:39204 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:11423 On Sun, Aug 14, 2011 at 11:46 PM, Roy Smith wrote: > In article , > =A0Dave Angel wrote: > >> The thing that confuses people is that not only is the part up to and >> through the domain name is case-insensitive, but that simple pages on >> Windows become case-insensitive for the remainder simply because Windows >> is such. > > Sure. =A0But it's only in the most trivial of situations that URLs map in > any trivial way to file names. And even then, it plays havoc with caches (both browser and proxy), which have no way of knowing that http://blah.com/Foo.html and http://blah.com/foo.html are the same document. (It's not hard to set up a Windows system to be case sensitive with URLs, or (even easier - at least with Apache) to have any request with uppercase letters to instantly redirect to the lower-cased version.) URLs are definitely case sensitive; any server that ChrisA