Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #17349
| Path | csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <rosuav@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.038 |
| X-Spam-Evidence | '*H*': 0.92; '*S*': 0.00; 'integers': 0.09; 'received:209.85.210.174': 0.13; 'received:mail- iy0-f174.google.com': 0.13; '16,': 0.15; 'subject:skip:t 10': 0.15; 'eckhardt': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'wrote:': 0.18; 'trying': 0.21; 'dec': 0.22; 'header:In-Reply-To:1': 0.22; 'code': 0.25; "i'm": 0.26; 'message- id:@mail.gmail.com': 0.28; 'pm,': 0.29; 'actually': 0.33; 'fri,': 0.34; 'to:addr:python-list': 0.34; 'test': 0.35; 'received:google.com': 0.37; 'some': 0.38; 'received:209.85': 0.38; 'e.g.': 0.39; "it's": 0.40; 'received:209': 0.40; 'to:addr:python.org': 0.40; '2011': 0.61; 'back': 0.62; 'order': 0.62; 'exact': 0.68; 'time?': 0.73 |
| 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; bh=75EC+jvJ8LLrHDqUQgSdJFNZriKc/sCb9rVqqGFDrWQ=; b=g4ofq0VhPHTGvy2gqi22stKAdxutK+wHEE9qzniXBJxEyNXP6OFSSHX619oV6Qpgb2 MnGfNgpteyEGPyNEospVbsJ25ZuyrdYNRBAidtjrLaJQEt/L1v5sIKJkYxrhrQi5jptH Lo73b/QkNzc10eWg7q5MS6rdJOetYK82WVNeg= |
| MIME-Version | 1.0 |
| In-Reply-To | <iigrr8-e96.ln1@satorlaser.homedns.org> |
| References | <iigrr8-e96.ln1@satorlaser.homedns.org> |
| Date | Fri, 16 Dec 2011 21:44:42 +1100 |
| Subject | Re: modifying a time.struct_time |
| From | Chris Angelico <rosuav@gmail.com> |
| To | python-list@python.org |
| Content-Type | text/plain; charset=ISO-8859-1 |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.12 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.3721.1324032285.27778.python-list@python.org> (permalink) |
| Lines | 12 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1324032285 news.xs4all.nl 6852 [2001:888:2000:d::a6]:56336 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | x330-a1.tempe.blueboxinc.net comp.lang.python:17349 |
Show key headers only | View raw
On Fri, Dec 16, 2011 at 8:45 PM, Ulrich Eckhardt <ulrich.eckhardt@dominolaser.com> wrote: > I'm trying to create a struct_time that is e.g. one year ahead or a month > back in order to test some parsing/formatting code with different dates. Do you need it to be one exact calendar year, or would it make sense to add/subtract integers from a Unix time? t = time.time() + 365*86400 # Not actually a year ahead, it's 365 days ahead t = time.localtime(t) # if you want a struct_time ChrisA
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
modifying a time.struct_time Ulrich Eckhardt <ulrich.eckhardt@dominolaser.com> - 2011-12-16 10:45 +0100
Re: modifying a time.struct_time Mazen Harake <mazen.harake@gmail.com> - 2011-12-16 11:32 +0100
Re: modifying a time.struct_time Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2011-12-16 10:44 +0000
Re: modifying a time.struct_time Tim Golden <mail@timgolden.me.uk> - 2011-12-16 10:50 +0000
Re: modifying a time.struct_time Chris Angelico <rosuav@gmail.com> - 2011-12-16 21:44 +1100
Re: modifying a time.struct_time Ulrich Eckhardt <ulrich.eckhardt@dominolaser.com> - 2011-12-16 14:32 +0100
Re: modifying a time.struct_time Chris Angelico <rosuav@gmail.com> - 2011-12-17 01:24 +1100
Re: modifying a time.struct_time Jason Friedman <jason@powerpull.net> - 2011-12-24 06:04 +0000
Re: modifying a time.struct_time Chris Angelico <rosuav@gmail.com> - 2011-12-24 18:13 +1100
csiph-web