This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2009年06月13日 16:48 by zooko, last changed 2022年04月11日 14:56 by admin.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| add-timegm-to-time.diff | hodgestar, 2009年10月09日 14:40 | Adds calendar.timegm to the time module. | ||
| timemodule-gmtime-r265.diff | pr0gg3d, 2010年04月26日 08:53 | Patch for r265 | ||
| timemodule-gmtime-r27b1.diff | pr0gg3d, 2010年04月26日 08:53 | patch for r27b1 | ||
| timemodule-gmtime-r312.diff | pr0gg3d, 2010年04月26日 08:53 | patch for r312 | ||
| timemodule-gmtime-3-trunk.diff | pr0gg3d, 2010年04月26日 08:54 | patch for trunk | ||
| issue6280-calendar.diff | belopolsky, 2010年06月06日 01:15 | |||
| issue6280-calendar-2.diff | belopolsky, 2010年06月14日 19:06 | |||
| Messages (22) | |||
|---|---|---|---|
| msg89334 - (view) | Author: Zooko O'Whielacronx (zooko) | Date: 2009年06月13日 16:48 | |
I've been struggling to write a function that takes UTC timestamps in ISO-8601 strings and returns UTC timestamps in unix-seconds-since-epoch. The first implementation used time.mktime() minus time.timezone (http://allmydata.org/trac/tahoe/browser/src/allmydata/util/time_format.py?rev=2424 ), but that doesn't work in London if the argument date is in a certain period during the 1970's. Then there was force-the-tz-to-UTC (http://allmydata.org/trac/tahoe/changeset/3911/src/allmydata/util/time_format.py ), but that doesn't work on Windows. Then there was force-the-tz-to-UTC-except-on-Windows (http://allmydata.org/trac/tahoe/changeset/3913/src/allmydata/util/time_format.py ), but that still doesn't work on Windows. Then there was this horrible hack of converting from string-iso-8601 to localseconds with time.mktime(), then converting from the resulting localseconds to an iso-8601 string, then converting the resulting string back to seconds with time.mktime(), then subtracting the two seconds values to find out the real offset between UTC-seconds and local-seconds for the current tz and for the time indicated by the argument (http://allmydata.org/trac/tahoe/changeset/3914/src/allmydata/util/time_format.py ). This actually works everywhere, but it is horrible. Finally, yesterday, someone pointed out to me that the inverse of time.gmtime() is located in the "calendar" module and is named calendar.timegm(). Now the implementation of our function is simple (http://allmydata.org/trac/tahoe/changeset/3915/src/allmydata/util/time_format.py ) I suggest that timegm() be moved to the time module next to its sibling gmtime(). |
|||
| msg89335 - (view) | Author: Zooko O'Whielacronx (zooko) | Date: 2009年06月13日 16:52 | |
Here is the ticket that tracked this issue within the Tahoe-LAFS project: http://allmydata.org/trac/tahoe/ticket/733 |
|||
| msg89379 - (view) | Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) | Date: 2009年06月14日 23:31 | |
Do you want to write a patch? (Note: the time module is written in C) |
|||
| msg91350 - (view) | Author: Francesco Del Degan (pr0gg3d) | Date: 2009年08月06日 07:47 | |
Hi, i started to produce a patch for timemodule.c. Working into it, i found that we have almost 3 way to do that: 1. Use timegm(3) function where HAVE_TIMEGM is defined (i have a working patch for it) 2. Implement a more portable timegm function with tzset and mktime where HAVE_MKTIME and HAVE_WORKING_TZSET is defined (i have a working patch for it) 3. Doing some calculation taking calendar.timegm as example. What do you think about it? Thanks, Francesco "pr0gg3d" Del Degan |
|||
| msg93797 - (view) | Author: Simon Cross (hodgestar) | Date: 2009年10月09日 14:40 | |
The attached patch adds a simple implementation of time.timegm that calls calendar.timegm. It includes a short test to show that time.timegm(time.gmtime(ts)) == ts for various timestamps. I implemented a pure C version by pulling in the various functions needed from datetime, but it was a bit messy and a lot more invasive. Documentation updates are still needed -- I will do those if there is support for the patch. |
|||
| msg99633 - (view) | Author: Alexander Belopolsky (Alexander.Belopolsky) | Date: 2010年02月20日 21:22 | |
Francesco, You have my +1 for implementing both 1 and 2 below. """ 1. Use timegm(3) function where HAVE_TIMEGM is defined (i have a working patch for it) 2. Implement a more portable timegm function with tzset and mktime where HAVE_MKTIME and HAVE_WORKING_TZSET is defined (i have a working patch for it) """ I don't think "3. Doing some calculation taking calendar.timegm as example" is a good idea. IMHO, its is more important that timegm is a proper inverse of gmtime on any given platform than to have the same values produced by timegm across platforms. If system timegm (or mktime) thinks that 1900 is a leap year, for example, python should not attempt to correct that. Maybe doing "some calculation" on systems that don't have mktime is a reasonable last resort, but I am not sure it is worth the effort. |
|||
| msg99905 - (view) | Author: Francesco Del Degan (pr0gg3d) | Date: 2010年02月23日 09:23 | |
I attached a patch that implements timegm according to two constraints: 1. If HAVE_TIMEGM is defined, use it or 2. If HAVE_MKTIME and HAVE_WORKING_TZSET use a portable way, using mktime (taken from timegm(3) man) Attached patches are for: r264, r273a1, r311, trunk What i'm missing just now are the tests (test_time.py) and docs update, if you like the patch, i can continue on that. |
|||
| msg99938 - (view) | Author: Alexander Belopolsky (Alexander.Belopolsky) | Date: 2010年02月23日 17:28 | |
The patch (I reviewed timemodule-gmtime-trunk.diff) looks mostly correct. One problem that I see is that it will likely produce compiler warnings on the systems without timegm and mktime. The warnings will be due to unused static function time_timegm and use of uninitialized variable tt. I suggest that you wrap time_timegm in appropriate #ifdefs. I trust that you tested that it works, but #ifdef HAVE_TIMEGM || (defined(HAVE_MKTIME) && defined(HAVE_WORKING_TZSET)) looks like a non-standard construct to me. I would do #if defined(HAVE_TIMEGM) || (defined(HAVE_MKTIME) && defined(HAVE_WORKING_TZSET)) instead. Finally, tests and documentation are needed. |
|||
| msg100012 - (view) | Author: Francesco Del Degan (pr0gg3d) | Date: 2010年02月24日 09:03 | |
Those are the new updated patches with ifdef wrapped timegm function, docs, and a conversion test. |
|||
| msg100052 - (view) | Author: Alexander Belopolsky (Alexander.Belopolsky) | Date: 2010年02月24日 17:21 | |
Looks good. A documentation typo: gmtime() -- convert seconds since Epoch to UTC tuple\n\ +timegm() - Convert a UTC tuple to seconds since the Epoch.\n\ Note the use of -- in the existing items. I understand that the choice of float for return value is dictated by consistency with mktime, but I question the wisdom of returning float instead of int from mktime. |
|||
| msg104201 - (view) | Author: Francesco Del Degan (pr0gg3d) | Date: 2010年04月26日 08:54 | |
Fixed typos, new patches added |
|||
| msg104262 - (view) | Author: Alexander Belopolsky (Alexander.Belopolsky) | Date: 2010年04月26日 17:43 | |
It is too late to get new features in 2.x.
Francesco,
Please double-check timemodule-gmtime-r312.diff, it does not seem to reflect your reported changes. ('-' vs '--' typo is still there)
There is no need to submit multiple patches. A patch for py3k branch should be enough.
|
|||
| msg104266 - (view) | Author: Alexander Belopolsky (Alexander.Belopolsky) | Date: 2010年04月26日 18:00 | |
Some more comments: - Documentation needs a "versionadded" entry. - A fate of calendar.timegm() needs to be decided. If the decision is to deprecate it, deprecation warning need to be added to calendar module and docs updated accordingly. Given that as implemented, time.timegm() is not a drop-in replacement for calendar.timegm(), deprecation may not be appropriate, it which case the difference between the two functions should probably be explained in the docs. |
|||
| msg104269 - (view) | Author: Francesco Del Degan (pr0gg3d) | Date: 2010年04月26日 19:56 | |
I thinks that isn't a so easy decision to take. And there are some other issues, imho: 1. timegm function is not specified by any standard (POSIX). The portable way (setting TZ, calling mktime, restore TZ) is a pure hack (could not work in future multithreaded environments). 2. if we want to strictly follow the time.h definition from POSIX standards, the timegm function should be kept away from time module (as now). 3. timegm seems to have some issues on mingw32. 4. Solaris doesn't come with the timegm function out-of-the-box. We could give up at this point. |
|||
| msg107169 - (view) | Author: Alexander Belopolsky (belopolsky) * (Python committer) | Date: 2010年06月06日 01:15 | |
With recent enhancements to datetime module, timegm has become a 1-liner: EPOCH = 1970 _EPOCH_DATETIME = datetime.datetime(EPOCH, 1, 1) _SECOND = datetime.timedelta(seconds=1) def timegm(tuple): """Unrelated but handy function to calculate Unix timestamp from GMT.""" return (datetime.datetime(*tuple[:6]) - _EPOCH_DATETIME) // _SECOND I suggest committing modernized implementation to serve as a reference and encourage people to use datetime module and datetime objects instead of time module and time tuples. |
|||
| msg107631 - (view) | Author: Alexander Belopolsky (belopolsky) * (Python committer) | Date: 2010年06月12日 06:37 | |
Mark, reassigning this to you for commit review. |
|||
| msg107802 - (view) | Author: Mark Dickinson (mark.dickinson) * (Python committer) | Date: 2010年06月14日 17:18 | |
The issue6280-calendar.diff patch looks good to me. |
|||
| msg107804 - (view) | Author: Alexander Belopolsky (belopolsky) * (Python committer) | Date: 2010年06月14日 17:43 | |
Committed issue6280-calendar.diff in r81988. I believe tests should be merged in 2.7. Any objections? As for the original RFE, I think it should be rejected. I believe users should be encouraged to use datetime objects instead of timetuples and converting a UTC datetime to any kind of "since epoch" timestamp is very simple using datetime module arithmetics. |
|||
| msg107808 - (view) | Author: Alexander Belopolsky (belopolsky) * (Python committer) | Date: 2010年06月14日 19:06 | |
I reverted r81988 in r81989. Some code may rely on timegm() accepting float in tm_sec. See http2time in Lib/http/cookiejar.py. It is very easy to modify implementation to accept float seconds, but old implementation accidentally work for float hours and minutes as well. |
|||
| msg122917 - (view) | Author: Alexander Belopolsky (belopolsky) * (Python committer) | Date: 2010年11月30日 17:05 | |
I am going to close this as "rejected" unless someone objects. The benefit is too small to make users suffer through the deprecation process. |
|||
| msg277965 - (view) | Author: Alexander Belopolsky (belopolsky) * (Python committer) | Date: 2016年10月03日 16:29 | |
I would like to revisit this for 3.7. |
|||
| msg319965 - (view) | Author: (oric) | Date: 2018年06月19日 13:50 | |
Please don't name it timegm which is such a stupid name (why not mgemit!). I knows it comes from history but history had timelocal which has been replaced by mktime (and python has mktime and not timelocal) so please, call it mkgmtime time.mkgmtime() I think it would make things more clear. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:50 | admin | set | github: 50529 |
| 2018年07月05日 15:12:20 | p-ganssle | set | nosy:
+ p-ganssle |
| 2018年06月19日 13:50:33 | oric | set | nosy:
+ oric messages: + msg319965 |
| 2016年10月03日 16:29:46 | belopolsky | set | status: closed -> open priority: low -> normal versions: + Python 3.7, - Python 3.2 keywords: - patch, needs review resolution: rejected -> messages: + msg277965 stage: commit review -> needs patch |
| 2012年11月06日 00:09:37 | jcea | set | nosy:
+ jcea |
| 2010年12月24日 00:10:12 | belopolsky | set | status: pending -> closed nosy: zooko, amaury.forgeotdarc, mark.dickinson, belopolsky, djc, hodgestar, pr0gg3d, aht |
| 2010年11月30日 17:05:40 | belopolsky | set | status: open -> pending resolution: rejected messages: + msg122917 |
| 2010年06月14日 19:06:08 | belopolsky | set | files:
+ issue6280-calendar-2.diff messages: + msg107808 versions: - Python 2.7 |
| 2010年06月14日 17:43:49 | belopolsky | set | messages:
+ msg107804 versions: + Python 2.7 |
| 2010年06月14日 17:18:07 | mark.dickinson | set | assignee: mark.dickinson -> belopolsky messages: + msg107802 |
| 2010年06月12日 06:37:12 | belopolsky | set | assignee: belopolsky -> mark.dickinson messages: + msg107631 |
| 2010年06月06日 01:15:09 | belopolsky | set | files:
+ issue6280-calendar.diff priority: normal -> low assignee: belopolsky nosy: + belopolsky, mark.dickinson, - Alexander.Belopolsky messages: + msg107169 stage: needs patch -> commit review |
| 2010年04月26日 19:56:16 | pr0gg3d | set | messages: + msg104269 |
| 2010年04月26日 18:00:09 | Alexander.Belopolsky | set | messages: + msg104266 |
| 2010年04月26日 17:43:42 | Alexander.Belopolsky | set | messages:
+ msg104262 versions: - Python 2.7 |
| 2010年04月26日 08:54:57 | pr0gg3d | set | messages: + msg104201 |
| 2010年04月26日 08:54:42 | pr0gg3d | set | files: - timemodule-gmtime-2-r264.diff |
| 2010年04月26日 08:54:37 | pr0gg3d | set | files: - timemodule-gmtime-2-r311.diff |
| 2010年04月26日 08:54:34 | pr0gg3d | set | files: - timemodule-gmtime-2-r27a3.diff |
| 2010年04月26日 08:54:29 | pr0gg3d | set | files: - timemodule-gmtime-2-trunk.diff |
| 2010年04月26日 08:54:11 | pr0gg3d | set | files: + timemodule-gmtime-3-trunk.diff |
| 2010年04月26日 08:53:53 | pr0gg3d | set | files: + timemodule-gmtime-r312.diff |
| 2010年04月26日 08:53:38 | pr0gg3d | set | files: + timemodule-gmtime-r27b1.diff |
| 2010年04月26日 08:53:18 | pr0gg3d | set | files: + timemodule-gmtime-r265.diff |
| 2010年02月24日 17:21:10 | Alexander.Belopolsky | set | messages: + msg100052 |
| 2010年02月24日 15:25:08 | brian.curtin | set | priority: normal keywords: + needs review type: enhancement versions: + Python 2.7, Python 3.2, - Python 2.6, Python 2.5 |
| 2010年02月24日 09:08:13 | pr0gg3d | set | files: + timemodule-gmtime-2-r264.diff |
| 2010年02月24日 09:07:52 | pr0gg3d | set | files: + timemodule-gmtime-2-r311.diff |
| 2010年02月24日 09:06:24 | pr0gg3d | set | files: + timemodule-gmtime-2-r27a3.diff |
| 2010年02月24日 09:03:09 | pr0gg3d | set | files:
+ timemodule-gmtime-2-trunk.diff messages: + msg100012 |
| 2010年02月24日 08:57:27 | pr0gg3d | set | files: - timemodule-gmtime-trunk.diff |
| 2010年02月24日 08:57:18 | pr0gg3d | set | files: - timemodule-gmtime-r311.diff |
| 2010年02月24日 08:57:15 | pr0gg3d | set | files: - timemodule-gmtime-r27a3.diff |
| 2010年02月24日 08:57:12 | pr0gg3d | set | files: - timemodule-gmtime-r264.diff |
| 2010年02月23日 17:28:45 | Alexander.Belopolsky | set | messages: + msg99938 |
| 2010年02月23日 09:24:28 | pr0gg3d | set | files: + timemodule-gmtime-trunk.diff |
| 2010年02月23日 09:24:14 | pr0gg3d | set | files: + timemodule-gmtime-r311.diff |
| 2010年02月23日 09:24:04 | pr0gg3d | set | files: + timemodule-gmtime-r27a3.diff |
| 2010年02月23日 09:23:34 | pr0gg3d | set | files:
+ timemodule-gmtime-r264.diff messages: + msg99905 |
| 2010年02月20日 21:22:19 | Alexander.Belopolsky | set | nosy:
+ Alexander.Belopolsky messages: + msg99633 |
| 2010年02月16日 12:35:09 | djc | set | nosy:
+ djc |
| 2009年10月09日 14:40:23 | hodgestar | set | files:
+ add-timegm-to-time.diff keywords: + patch messages: + msg93797 |
| 2009年10月08日 11:18:17 | aht | set | nosy:
+ aht versions: + Python 2.6 |
| 2009年08月06日 08:22:37 | hodgestar | set | nosy:
+ hodgestar |
| 2009年08月06日 07:47:23 | pr0gg3d | set | nosy:
+ pr0gg3d messages: + msg91350 |
| 2009年06月14日 23:31:24 | amaury.forgeotdarc | set | nosy:
+ amaury.forgeotdarc messages: + msg89379 stage: needs patch |
| 2009年06月13日 16:52:51 | zooko | set | messages: + msg89335 |
| 2009年06月13日 16:48:01 | zooko | create | |