Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!eu.feeder.erje.net!xlned.com!feeder3.xlned.com!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 X-Spam-Status: OK 0.046 X-Spam-Evidence: '*H*': 0.91; '*S*': 0.00; 'mrab': 0.05; 'advocate': 0.07; 'janvier': 0.09; 'subject:question': 0.10; 'jan': 0.12; 'from:addr:mrabarnett.plus.com': 0.16; 'from:addr:python': 0.16; 'from:name:mrab': 0.16; 'message-id:@mrabarnett.plus.com': 0.16; 'received:192.168.1.4': 0.16; 'wrote:': 0.18; 'thu,': 0.19; 'import': 0.22; 'header:User-Agent:1': 0.23; 'header:In-Reply- To:1': 0.27; 'rest': 0.29; 'chris': 0.29; 'room': 0.29; '>>>>': 0.31; 'writes:': 0.31; 'ago': 0.33; 'should': 0.36; 'unit': 0.37; 'to:addr:python-list': 0.38; 'pm,': 0.38; 'to:addr:python.org': 0.39; 'how': 0.40; 'read': 0.60; 'making': 0.63; 'email addr:gmail.com': 0.63; 'more': 0.64; '30,': 0.65; 'subject:. ': 0.67; '21st': 0.68; 'film': 0.74; 'saw': 0.77; '======': 0.84; 'temperature': 0.84 X-CM-Score: 0.00 X-CNFS-Analysis: v=2.1 cv=CfYxutbl c=1 sm=1 tr=0 a=0nF1XD0wxitMEM03M9B4ZQ==:117 a=0nF1XD0wxitMEM03M9B4ZQ==:17 a=0Bzu9jTXAAAA:8 a=5FYZ9MsUIQAA:10 a=3MHfnqgO9O4A:10 a=ihvODaAuJD4A:10 a=IkcTkHD0fZMA:10 a=EBOSESyhAAAA:8 a=3YzNZhpF-twA:10 a=pGLkceISAAAA:8 a=Bs09IYRTeyOgxhEuS-QA:9 a=QEXdDO2ut3YA:10 a=MSl-tDqOz04A:10 X-AUTH: mrabarnett:2500 Date: Thu, 30 Jan 2014 11:51:53 +0000 From: MRAB User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: python-list@python.org Subject: Re: pytz question: GMT vs. UTC References: <3g6je9h7fp29pebi7aa04tigc50hm3vepj@4ax.com> <52E9BB8C.80000@mrabarnett.plus.com> In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit 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: 45 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1391082721 news.xs4all.nl 2898 [2001:888:2000:d::a6]:51418 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:64984 On 2014-01-30 08:45, wxjmfauth@gmail.com wrote: > Le jeudi 30 janvier 2014 04:27:54 UTC+1, Chris Angelico a écrit : >> On Thu, Jan 30, 2014 at 1:40 PM, MRAB wrote: >> >> >> How cruel... I suspect the smack at 0degC is much more painful >> >> >> than one >> >> >> at room temperature >> >> >> >> >> > It's the 21st century; you should be making use of Unicode: 0°C. >> >> >> >> I started to read that and thought you were going to advocate the use of 0°K... >> >> > > ====== > > The temperature unit is the "Kelvin", not the "Degree Kelvin". > One writes: 0 K, 275.15 K > Not that long ago I saw a science fiction film in which one of the "scientists" said "degrees Kelvin". The rest of the "science" was somewhat dubious too... > It can also be the "Degree Celsius", not the "Celsius". > One writes: -273.15 °C, 0 °C > > > >>>> import unicodedata as ud >>>> for c in '\u2109\u212a\u2103\u00b0': > ... print(ud.name(c)) > ... > DEGREE FAHRENHEIT > KELVIN SIGN > DEGREE CELSIUS > DEGREE SIGN >>>> >