Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!weretis.net!feeder4.news.weretis.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed3a.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; 'url:sourceforge': 0.03; 'subject:question': 0.10; "(i'm": 0.16; 'from:addr:pobox.com': 0.16; 'from:addr:skip': 0.16; 'url:)': 0.16; 'sender:addr:gmail.com': 0.17; '>>>': 0.22; 'skip': 0.24; 'compare': 0.26; 'asking': 0.27; 'message-id:@mail.gmail.com': 0.30; 'doc': 0.31; 'universal': 0.31; 'created': 0.35; 'objects': 0.35; 'received:google.com': 0.35; 'false': 0.36; 'two': 0.37; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'skip:p 20': 0.39; 'according': 0.40; 'complete': 0.62; 'subject:. ': 0.67; 'ato': 0.84; 'greenwich': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=1Z/XKG2sbBgKRBelY5EGU9FzQ6shAHT23m+LbpCprJk=; b=m5eva9f1t7UDKBXmbYIrm7+ytdFQZWpAci+kq7hJXQiXLNAX4Imz3/Pu4yJWvNqC9c r9aLeOxh2sHjYXm9oRC0vTjoRLeWNsLmaTYnjmoiuZyfYv4ILY/dBN+ER51DuzP7/z21 4DEeIVi25czmu/suVDYoeE0nejc7DqCeXy6NQh7EqpUNyJn8zxhoJb8ZFpNMfFJivh9f qCpXO/yxk+T5jNfFDLNwBAMD9NGznbxh0zcEljXk1h1m2ZYAghm5Q9sZt+iahrjXDCJm NJ8CmIPUX5Mmvkinen/QxMG7l/0P+EqZvwenQyemJ7boHY8EGvg4AtL9tYybZKMoN/oG Kj6w== MIME-Version: 1.0 X-Received: by 10.50.138.72 with SMTP id qo8mr9714566igb.8.1391016568300; Wed, 29 Jan 2014 09:29:28 -0800 (PST) Sender: skip.montanaro@gmail.com Date: Wed, 29 Jan 2014 11:29:28 -0600 X-Google-Sender-Auth: BNwNP99EU0BulUFnIuUzzhFC6tk Subject: pytz question: GMT vs. UTC From: Skip Montanaro To: Python Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable 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: 18 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1391016578 news.xs4all.nl 2957 [2001:888:2000:d::a6]:39213 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:64944 According ato the pytz doc (http://pytz.sourceforge.net/): "=E2=80=98UTC=E2=80=99 is Universal Time, also known as Greenwich Mean Time= or GMT in the United Kingdom." If they are equal, why don't timezone objects created from those two strings compare equal? >>> pytz.timezone("UTC") =3D=3D pytz.timezone("GMT") False (I'm revealing my complete ignorance of timezone manipulation by asking this question.) Thx, Skip