Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!eu.feeder.erje.net!xlned.com!feeder5.xlned.com!newsfeed.xs4all.nl!newsfeed4.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 X-Spam-Status: OK 0.014 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'python,': 0.02; 'subject:Python': 0.06; 'dan': 0.09; 'oh,': 0.09; 'cc:addr:python- list': 0.11; 'jan': 0.12; 'born.': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'roy': 0.16; 'which,': 0.16; 'wrote:': 0.18; 'thu,': 0.19; '>>>': 0.22; 'cc:addr:python.org': 0.22; 'dinner': 0.24; 'cc:2**0': 0.24; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; 'unix': 0.29; 'message-id:@mail.gmail.com': 0.30; 'another': 0.32; 'quite': 0.32; 'fri,': 0.33; 'skip:t 40': 0.33; 'maybe': 0.34; 'subject:the': 0.34; "can't": 0.35; 'problem.': 0.35; 'received:google.com': 0.35; 'represent': 0.38; 'according': 0.40; 'movie': 0.65; 'smith': 0.68; 'risk': 0.72; 'day': 0.76; 'yourself': 0.78; 'dating': 0.91; 'to:none': 0.92; 'romantic': 0.93 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=w4eoWhjzZGP1Go58klDHJj553v+1IQAOaeHUziabWwE=; b=jOC7BIFq62gXbg7E22m88Ibb9ZhxXtEBIicuIojKLeHMUe0AaWYjuXxKL6tpA9aPnp iwikaI+4MGg26PxMBX7gEhybhImezz1V9dVHVsoGcup6+kEovSoORO1PCGqnQeJxqnfn IjUZiuEGl+JPBxGhBxNF8ywG7avjvhEsmk01fHdpuvYfRq3SVJAviMCe+X1xdN3RT3q+ k+02e7fKdpBclOPs5aQq/sJV6AKa8zWOgWRY73aai5Jz4m7KsYe4XeK5aqyGfU88R+1K eMcJt41Oq5HB3HKJN/Mv9FSfFnkYy6ob3gD5PBmjAKn4MkVJlQofDIFiKbEhbrnT1Rky XUng== MIME-Version: 1.0 X-Received: by 10.66.129.133 with SMTP id nw5mr4276889pab.98.1389280666040; Thu, 09 Jan 2014 07:17:46 -0800 (PST) In-Reply-To: References: <4cbf$52cc2e82$541826b9$11761@cache70.multikabel.net> <686$52cd4640$541826b9$21896@cache1.tilbu1.nb.home.nl> <52CE3416.9090501@stoneleaf.us> <7wiottej72.fsf@benfinney.id.au> Date: Fri, 10 Jan 2014 02:17:45 +1100 Subject: Re: the Gravity of Python 2 From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 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: 1389280669 news.xs4all.nl 2913 [2001:888:2000:d::a6]:38127 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:63605 On Fri, Jan 10, 2014 at 2:01 AM, Dan Sommers wrote: > On Thu, 09 Jan 2014 09:14:22 -0500, Roy Smith wrote: > >> Oh, and another thing I can do with a datetime that I can't do with a >> unix timestamp. I can represent the day I was born. > > At the risk of dating myself, the day I was born is -231094800. Which, according to a Unix build of Python, is quite representable: >>> time.strftime("%Y-%m-%d",time.gmtime(-231094800)) '1962-09-05' This isn't a problem. Now, if you were considering yourself for a romantic candle-lit dinner and a movie afterward, then maybe there's some risk in dating yourself :) ChrisA