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.

classification
Title: datetime.rfcformat() for Date and Time on the Internet
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.2
process
Status: closed Resolution: rejected
Dependencies: 5094 7989 Superseder:
Assigned To: belopolsky Nosy List: ajaksu2, belopolsky, daniel.urban, eric.araujo, l0nwlf, mihaic, poolie, r.david.murray, techtonik
Priority: normal Keywords: easy, patch

Created on 2009-12-27 19:18 by techtonik, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
issue7584.diff daniel.urban, 2010-04-13 13:57 Patch (py3k branch)
issue7584_2.diff daniel.urban, 2010-05-09 18:13 New patch (py3k branch)
Messages (33)
msg96917 - (view) Author: anatoly techtonik (techtonik) Date: 2009-12-27 19:18
RFC 3339 defines a standard for Date and Time on the Internet. 
http://www.ietf.org/rfc/rfc3339.txt Given that Python is increasingly 
popular on the Internet is should include convenience function to 
generate RFC 3339 timestamps in standard library.

It is impossible to generate RFC 3339 timestamps (that are also valid 
ISO 8601 timestamps) with datetime.strftime() alone, so the following 
code should be used:

import datetime

def rfcformat(dt):
    """ Output datetime in RFC 3339 format that is also valid ISO 8601
        timestamp representation"""

    if dt.tzinfo is None:
        suffix = "-00:00"
    else:
        suffix = dt.strftime("%z")
        suffix = suffix[:-2] + ":" + suffix[-2:]
    return dt.strftime("%Y-%m-%dT%H:%M:%S") + suffix
msg102670 - (view) Author: Daniel Diniz (ajaksu2) * (Python triager) Date: 2010-04-09 02:43
It looks like feed generators need this feature[1]. See also issue 5207 and a current implementation[2].

[1] http://validator.w3.org/feed/docs/error/InvalidRFC3339Date.html
[2] http://code.google.com/p/formattime/
msg102671 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2010-04-09 02:48
Note that the Atom format requires a subset of RFC 3339 (which is in turn a subset of ISO 8601 if I remember correctly, and is the same as the W3C Datetime Format): https://www.tools.ietf.org/html/rfc4287#section-3.3

Summary: Atom requires using an uppercase T between date and time (the RFC permits lower and upper case), and using an uppercase Z for UTC timezone, not “-00:00”.

Regards
msg102672 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2010-04-09 02:50
Should have checked before speaking. RFC 3339 is a subset of W3CDTF, as said on Daniel’s first link.
msg102700 - (view) Author: anatoly techtonik (techtonik) Date: 2010-04-09 08:47
Atom spec - http://www.atomenabled.org/developers/syndication/atom-format-spec.php#date.constructs
msg103051 - (view) Author: Daniel Urban (daniel.urban) * (Python triager) Date: 2010-04-13 13:57
I've made a patch.

This patch adds a datetime_rfcformat function to datetimemodule.c which is available from Python as the datetime.rfcformat method in the datetime module.  This method returns the date in RFC 3339 format: YYYY-MM-DDTHH:MM:SS[.mmmmmm]+HH:MM.  Documentation and tests are also added.
msg104417 - (view) Author: Daniel Urban (daniel.urban) * (Python triager) Date: 2010-04-28 08:04
Is anyone still interested in this? Is there a problem with my patch?
Thanks.
msg104418 - (view) Author: Shashwat Anand (l0nwlf) Date: 2010-04-28 08:13
Daniel : your patch is yet to be reviewed. Please have patience.
msg104420 - (view) Author: anatoly techtonik (techtonik) Date: 2010-04-28 08:44
Thanks Daniel. I am still interested in this. My Python code as well as your patch doesn't specify that "Z" must be present when time zone offset is unknown or absent, but Atom specification mentions that and I believe this is that most users expect to see. In fact I needed such function for implementing Atom feed for Trac, so in my opinion Z is more clear than -00:00 or +00:00

I also was waiting for a final resolution of issue7582 which discusses the proper way to get UTC offset. The function used to correctly build RFC 3339 timestamp from file modification time evolved to the following code:

def isomtime(fname):
    """Return file modification time in RFC 3339 (ISO 8601 compliant) format"""
    stamp = time.localtime(os.stat(fname).st_mtime)

    # determine UTC offset rounded to minutes
    # (see http://bugs.python.org/issue7582 for discussion)
    #   true if file was modified during active DST
    isdst = stamp.tm_isdst
    utcoffset = -(time.altzone if (time.daylight and isdst) else time.timezone) // 60

    suffix = "%+03d:%02d" % (utcoffset // 60, abs(utcoffset) % 60)
    return time.strftime("%Y-%m-%dT%H:%M:%S", stamp) + suffix
msg104442 - (view) Author: Daniel Urban (daniel.urban) * (Python triager) Date: 2010-04-28 17:40
> My Python code as well as your patch doesn't specify that "Z" must be
> present when time zone offset is unknown or absent,

Yes, that is because RFC 3339 explicitly says (in 4.3.) that -00:00 is "differs semantically from an offset of "Z" or "+00:00", which imply that UTC is the preferred reference point for the specified time". It also says that  if "the offset to local time is unknown, this can be represented with an offset of "-00:00"". So I don't think we can write "Z" or "+00:00" if we don't know the UTC offset.

> but Atom
> specification mentions that

It says "an uppercase "Z" character MUST be present in the absence of a numeric time zone offset". Correct me if I'm wrong, but "-00:00" *is* a numeric time zone offset. So it isn't absent.

> and I believe this is that most users
> expect to see.

I think the RFC is clear (but correct me if I'm mistaken): we cannot replace "-00:00" with it. We of course could replace "+00:00" with "Z".

> In fact I needed such function for implementing Atom
> feed for Trac, so in my opinion Z is more clear than -00:00 or +00:00

It may be better than "+00:00", but according to the RFC it simply doesn't mean the same thing as "-00:00".
msg104463 - (view) Author: anatoly techtonik (techtonik) Date: 2010-04-28 21:02
> It also says that  if "the offset to local time is unknown, this can
> be
> represented with an offset of "-00:00"". So I don't think we can write
> "Z" or "+00:00" if we don't know the UTC offset.

>> but Atom
>> specification mentions that

> It says "an uppercase "Z" character MUST be present in the absence of
> a numeric time zone offset". Correct me if I'm wrong, but "-00:00" 
> *is* a numeric time zone offset. So it isn't absent.

As quoted earlier, -00:00 is used when time zone is unknown, and "the absence of a numeric time zone offset" or "the absence of offset" is only possible when this time zone is unknown.
msg104465 - (view) Author: anatoly techtonik (techtonik) Date: 2010-04-28 21:40
I do not think that -00:00 or +00:00 will be invalid Atom timestamp, but to implement parser of rfc3339 timestamp, Z handling is still needed. I can easily imagine people making wrong assumption that parsing 00:00 at the end would be enough for proper round-tripping.
msg104578 - (view) Author: Daniel Urban (daniel.urban) * (Python triager) Date: 2010-04-29 19:55
> I do not think that -00:00 or +00:00 will be invalid Atom timestamp,
> but to implement parser of rfc3339 timestamp, Z handling is still
> needed. I can easily imagine people making wrong assumption that
> parsing 00:00 at the end would be enough for proper round-tripping.

I can't follow you. This issue and my patch is about creating a string in RFC 3339 format, not *parsing*.
msg104615 - (view) Author: anatoly techtonik (techtonik) Date: 2010-04-30 10:18
The point is that your implementation doesn't allow people to generate 'Z'-ending timestamp if they need a subset of rfc3339.
msg104631 - (view) Author: Daniel Urban (daniel.urban) * (Python triager) Date: 2010-04-30 12:05
> The point is that your implementation doesn't allow people to generate
> 'Z'-ending timestamp if they need a subset of rfc3339.

That is exactly right. Do you have any suggestion, how to do that? Maybe an optional argument to the rfcformat method? Something like:

def new_rfcformat(self, default_utcoffset='-00:00'):
    if we_know_the_utc_offset:
        return self.rfcformat() # the method in my current patch
    else:
        return self.isoformat() + default_utcoffset

This way, if somebody want 'Z' instead of '-00:00', just calls the method like this:

d.new_rfcformat('Z')

Though this way '+00:00' wouldn't get replaced by 'Z'. 
Any suggestions?
msg105394 - (view) Author: anatoly techtonik (techtonik) Date: 2010-05-09 13:31
Let's quote RFC 3339:
"""
4.3. Unknown Local Offset Convention

   If the time in UTC is known, but the offset to local time is unknown,
   this can be represented with an offset of "-00:00".  This differs
   semantically from an offset of "Z" or "+00:00", which imply that UTC
   is the preferred reference point for the specified time.  RFC2822
   [IMAIL-UPDATE] describes a similar convention for email.
"""

The phrase "this CAN be represented" doesn't mean that it SHOULD be represented. Do we have information to decide if offset to local zone is unknown or if UTC is the preferred reference point for specified time? I guess no, and I am afraid that most users just don't care or don't want to bog into details - all they need is a good Atom looking timestamp. As we are not aiming at making a reference library for generating all possible forms of valid RFC 3339 timestamps, it makes sense to use 'Z' in the end because it is easier to handle.

rfcformat(dt).replace("Z", "-00:00") in case somebody need a -00:00 is easier than reverse operation if you need 'Z' in the end:

dstr = rfcformat(dt)
if dstr.endswith("-00:00") or dstr.endswith("+00:00"):
    dstr = dstr[:-6] + 'Z'
msg105399 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2010-05-09 15:56
I think Daniel's suggestion of having an option to control this is the best way to handle the different use cases.  And I think the default should be -00:00, as he suggested.

Removing 2.7 and 3.1 since 3.2 is the only branch open to new features at this point.
msg105405 - (view) Author: Daniel Urban (daniel.urban) * (Python triager) Date: 2010-05-09 18:13
Here is a new patch.

The name of the optional argument is "default_utcoffset" which is obviously too long, but I can't think a better name. Any suggestions? (I think simply "utcoffset" would be misleading, because the value of the argument is only used for naive instances.)

In Modules/datetimemodule.c (in line 4375) I call Py_INCREF on the PyUnicode instance returned by PyArg_ParseTupleAndKeywords. I'm not sure this is the right thing to do. I'm doing it because the doc says that the reference count of an object returned by PyArg_ParseTupleAndKeywords shouldn't be decremented, and I think PyUnicode_AppendAndDel calls Py_XDECREF on its second argument.
Can anyone correct or confirm me on this? Thanks.
msg106527 - (view) Author: anatoly techtonik (techtonik) Date: 2010-05-26 14:31
1. David, as an original reporter who needed this for Trac (http://trac.edgewall.org/ticket/8662) and couple of other projects I strongly for 'Z' ending by default, unless you are going to explain the full difference in documentation. Expect to answer the question "Why the timestamp is not 'Z'-ended like in Atom?"

2. "-00:00" is not semantically correct as a default either. Quoting RFC again - "If the time in UTC is known, but the offset to local time is unknown, this can be represented with an offset of "-00:00". It is not true for naive datetime stamps that represent the fact that "the time in UTC is unknown, and the offset to UTC is unknown".

3. Daniel, thanks for yet another patch contribution for this issue. default_utcoffset seems confusing to me. If I see call like datetime.rfcformat(default_utcoffset="-00:00") - I somehow expect that default_utcoffset is used if it is impossible to determine the offset. If it is only about format of zero offset then 'zerozone' param seems more logical. If it is about substitution for unknown zone, then the proper way in datetime API would be to convert object to 'aware datetime' type with proper zone prior to calling this function. Datetime API is definitely on of the worst items in Python from the user point of view.
msg107000 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2010-06-04 01:01
I just took a look at RFC 3339, and I see what you mean, Anatoly, about the meaning of -00:00.  But reading further:

   "While the Internet does have a tradition of accepting reality when creating specifications, this should not be done at the expense of interoperability.  Since interpretation of an unqualified local time zone will fail in approximately 23/24 of the globe, the interoperability problems of unqualified local time are deemed unacceptable for the Internet."

It seems to me that we should not try to produce an RFC 3339 compliant date string from a naive datetime.  It will be practical to accept that restriction once issue 5094 is resolved.  Given this, I'd be OK with Z being the default.
msg107066 - (view) Author: Alexander Belopolsky (belopolsky) * (Python committer) Date: 2010-06-04 15:07
> It seems to me that we should not try to produce an RFC 3339 compliant
> date string from a naive datetime.  It will be practical to accept
> that restriction once issue 5094 is resolved.

Does this mean that t.rfcformat() should fail if t is naive?

According to my reading of RFC 3339, it is not correct to produce 'Z' timestamps when local offset is not known.  My understanding is that compliant producers must either know their local timezone and specify correct offset in the suffix or produce UTC timestamps with '-00:00'.  Consumers receiving a '...Z' timestamp should be able to rely on that to conclude that the producer is in the UTC+0 timezone.  Raising an exception when local offset is not known is OK, but I think generating '-00:00' would be more useful.

Note that overall I am -1 on this proposal.  A naive application can probably get away with datetime.isoformat.  A strictly compliant RFC 3339 implementation is beyond the scope of datetime module and belongs to a separate module which should probably support parsing of RFC 3339 timestamps as well.

Rather than adding more xxxformat() methods, I would rather see datetime getting a custom __format__ that would be flexible enough to make writing standard formats easy.
msg107069 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2010-06-04 15:38
I see I didn't think it through far enough.

Given this, it seems that the Atom standard is saying, "if you don't know your actual UTC offset, you can't generate a valid ATOM timestamp".  Which sorta makes sense, though you'd think they'd want to accept a -00:00 timestamp since then at least you know when the article was generated/modified, even if you don't know the local time of the poster.  And maybe they do, since as someone pointed out -00:00 is a numeric offest...

I agree that generalizing the production of custom formats sounds like a better way forward long term.  I'm not clear on why you think RFC3339 deserves its own module.
msg107139 - (view) Author: anatoly techtonik (techtonik) Date: 2010-06-05 15:19
> According to my reading of RFC 3339, it is not correct to produce 'Z'
> timestamps when local offset is not known.

It is not said that 'Z' SHOULD NOT be produced if local offset is unknown. Even if offset is unknown, UTC still can be the preferred reference point for the specified time.

From the user point of view the assumption about "know or unknown offset" is beyond the judgement of low-level datetime library. For example, if I read timestamp of a local file, I assume that local offset is unknown and UTC is not preferred, but still do not have other choice than to write zero. It won't help me to find actual offset. For a network file I assume that preferred offset is actually UTC and although I do not have any means to check the offset I can write zero without any hesitation.

Solving philosophical -00:00 +00:00 problems require a deep knowledge of RFC3339. I doubt that pleasing 1% who need this kind of fine-grained semantic control with special API deserves suffering of other 99%. In the end there is nothing hard in replacing 'Z' with a flavor of your choice.

Of course, if smb. want to force developers to overload their brain for the sake of providing the most accurate semantic timestamps (that nobody uses anyway) - then the -00:00/+00:00 stuff is a way to go. But my opinion is that datetime API in Python is already complicated enough to negatively affect this language karma.
msg107140 - (view) Author: anatoly techtonik (techtonik) Date: 2010-06-05 15:35
s/datetime/date\/time/ in the last sentence, as the complication comes  from:
-- start offtopic --
1. the vast amount of various date and time modules/functions
2. the little amount of what they can do

I still hardly believe that there is no way to get current TZ offset given that every OS provides such information.
-- end offtopic --
msg107144 - (view) Author: Alexander Belopolsky (belopolsky) * (Python committer) Date: 2010-06-05 16:00
On Sat, Jun 5, 2010 at 11:35 AM, anatoly techtonik
<report@bugs.python.org> wrote:
..
> s/datetime/date\/time/ in the last sentence, as the complication comes  from:
> -- start offtopic --
> 1. the vast amount of various date and time modules/functions

"Vast" is a bit of overstatement.  It is mostly the datetime and time
module with a little bit in a less used calendar module.   I believe a
stated goal is to gradually remove the need for time module in
date/time manipulation and possibly fold it into posix module.

Can you be more specific?  The biggest omission, IMO, is the lack of
time zone support, but this is being worked on.  See  issue5094.

> I still hardly believe that there is no way to get current TZ offset given that every OS provides such information.

See issue1647654.
msg107160 - (view) Author: anatoly techtonik (techtonik) Date: 2010-06-05 18:53
On Sat, Jun 5, 2010 at 7:00 PM, Alexander Belopolsky
<report@bugs.python.org> wrote:
> On Sat, Jun 5, 2010 at 11:35 AM, anatoly techtonik
> <report@bugs.python.org> wrote:
> ..
>> s/datetime/date\/time/ in the last sentence, as the complication comes  from:
>> -- start offtopic --
>> 1. the vast amount of various date and time modules/functions
>
> "Vast" is a bit of overstatement.  It is mostly the datetime and time
> module with a little bit in a less used calendar module.

"Concise" Python datetime module API =)
(without any way to get current UTC offset from operating system)
-------------------
datetime.MINYEAR
datetime.MAXYEAR
class datetime.date
class datetime.time
class datetime.datetime
class datetime.timedelta
class datetime.tzinfo
timedelta.min
timedelta.max
timedelta.resolution
classmethod date.today()
classmethod date.fromtimestamp()
classmethod date.fromordinal()
date.min
date.max
date.resolution
date.year
date.month
date.day
date.replace()
date.timetuple()
date.toordinal()
date.weekday()
date.isoweekday()
date.isocalendar()
date.isoformat()
date.__str__()
date.ctime()
date.strftime(format)
classmethod datetime.today()
classmethod datetime.now()
classmethod datetime.utcnow()
classmethod datetime.fromtimestamp()
classmethod datetime.utcfromtimestamp()
classmethod datetime.fromordinal()
classmethod datetime.combine()
classmethod datetime.strptime()
datetime.min
datetime.max
datetime.resolution
datetime.year
datetime.month
datetime.day
datetime.hour
datetime.minute
datetime.second
datetime.microsecond
datetime.tzinfo
datetime.date()
datetime.time()
datetime.timetz()
datetime.replace()
datetime.astimezone()
datetime.utcoffset()
datetime.dst()
datetime.tzname()
datetime.timetuple()
datetime.utctimetuple()
datetime.toordinal()
datetime.weekday()
datetime.isoweekday()
datetime.isocalendar()
datetime.isoformat()
datetime.__str__()
datetime.ctime()
datetime.strftime()
time.min
time.max
time.resolution
time.hour
time.minute
time.second
time.microsecond
time.tzinfo
time.replace()
time.isoformat()
time.__str__()
time.strftime()
time.utcoffset()
time.dst()
time.tzname()
tzinfo.utcoffset()
tzinfo.dst()
tzinfo.tzname()
tzinfo.fromutc()

Raw doc with stripped markup is only 58161 bytes.
Perhaps the biggest problem that you need to read out the doc
thoroughly to understand that all UTC related stuff starts to work
only when somebody writes a tzinfo module. It is like "you are
developer, so its your headache when you get this data - we gave you
The API". =)

> Can you be more specific?  The biggest omission, IMO, is the lack of
> time zone support, but this is being worked on.  See  issue5094.

Great, but it is Python 3.2 and I will be using 2.x Python for the
next two years at least.
It is not an only about omission - it is also about ineffective and
somehow bloated unpythonic C API that is not well suited for everyday
tasks.

>> I still hardly believe that there is no way to get current TZ offset given that every OS provides such information.
>
> See issue1647654.

Too long, and I've a little bit tired, and will be pretty busy next
week, but thanks for the pointers.
msg110240 - (view) Author: Alexander Belopolsky (belopolsky) * (Python committer) Date: 2010-07-13 22:52
Adding issue 7989 as a dependency because having pure python implementation in the CPython tree will make it much easier to experiment with new datetime features.

I am still -1 on adding specialized formatting methods to the datetime class.  I think this should be done in specialized modules.  On the other hand, datetime module should provide facilities to easily implement such methods and there does not seem to be a good solution for implementing locale independent formats.  I would like to consider the idea of adding datetime.cstrftime() which provides formatting equivalent to datetime.strftime() in "C" locale.  Another feature that will be needed to implement rfcformat, would be a GNU date style "%:z" code.
msg142687 - (view) Author: Martin Pool (poolie) Date: 2011-08-22 06:41
Z is well established as meaning "UTC time" <http://en.wikipedia.org/wiki/Coordinated_Universal_Time#Time_zones> so shouldn't be used for "zone not known."  rfc 3393 is clear that it's equivalent to +00:00.  

So the questions seem to be:
 * should there be an included battery to do this format at all?
 * should it represent utc as '+00:00' or as 'Z' by default - applications should have the choice.

It's probably reasonable to assume correct Python application code using datetime objects will know whether they have a local, utc, or unknown time.

The current patch does not seem to have any way to format an object with a declared UTC tzinfo as having a 'Z' prefix, which would be useful.
msg162729 - (view) Author: Alexander Belopolsky (belopolsky) * (Python committer) Date: 2012-06-13 21:31
David,

Isn't the requested feature now implemented as email.utils.format_datetime()?  Also, what is the difference between RFC 3339 format and the one provided by datetime.isoformat?

>>> print(datetime(2000,1,1, tzinfo=timezone.utc).isoformat('T'))
2000-01-01T00:00:00+00:00
msg162731 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2012-06-13 21:42
email.utils.format_datetime implements RFC 5322 date format, which is very different from RFC 3339.  I don't remember enough about what I read in RFC 3339 to answer your question about isoformat.
msg162786 - (view) Author: anatoly techtonik (techtonik) Date: 2012-06-14 13:36
On Wed, Jul 14, 2010 at 1:52 AM, Alexander Belopolsky
<report@bugs.python.org> wrote:
> I am still -1 on adding specialized formatting methods to the datetime class.  I think this should be done in specialized modules.

No problem - add "formats" module and I'll be happy.

>On the other hand, datetime module should provide facilities to easily implement such methods and there does not seem to be a good solution for implementing locale independent formats.  I would like to consider the idea of adding datetime.cstrftime() which provides formatting equivalent to datetime.strftime() in "C" locale.  Another feature that will be needed to implement rfcformat, would be a GNU date style "%:z" code.

If there is no best solution then the best out worse solutions is much
much better - provided that an appropriate explanation is available
for the users.
msg162787 - (view) Author: anatoly techtonik (techtonik) Date: 2012-06-14 13:37
I must add - many times better than no solution at all.
msg163135 - (view) Author: Alexander Belopolsky (belopolsky) * (Python committer) Date: 2012-06-19 02:46
I have reviewed RFC 3339 and it looks like the following produces a fully compliant timestamp:
 
>>> print(datetime(2000,1,1, tzinfo=timezone.utc).isoformat('T'))
2000-01-01T00:00:00+00:00

I see the following remaining issues:

1. It is often desired to get RFC 3339 timestamp in local timezone instead of UTC.  This will be addressed in issue 9527.

2. If UTC timestamp is produced by a computer in non-UTC timezone, the offset should be specified as '-00:00'.  If this is important, an application can replace '+' with '-', but most likely specifying the correct local offset is a better option.

3. RFC 3339 requires support for leap seconds.  This limitation cannot be solved by adding a method to datetime.

Most importantly, given that there are several RFCs describing different  date formats, a datetime.rfcformat() method will be ambiguous.  (GNU date has --rfc-2822 and --rfc-3339 options and the later allows output of three different precisions.)

I am going to reject this RFE.  I don't think adding datetime.rfcformat() method will solve any real deficiency and whatever limitations datetime has with respect to producing RFC compliant timestamps should be addressed in future specific proposals.
History
Date User Action Args
2022-04-11 14:56:55adminsetgithub: 51833
2012-06-22 01:01:13belopolskysetstatus: pending -> closed
2012-06-19 02:46:52belopolskysetstatus: open -> pending
resolution: rejected
messages: + msg163135

stage: needs patch -> resolved
2012-06-14 13:37:04techtoniksetmessages: + msg162787
2012-06-14 13:36:04techtoniksetmessages: + msg162786
2012-06-13 21:42:05r.david.murraysetmessages: + msg162731
2012-06-13 21:31:34belopolskysetmessages: + msg162729
2011-08-22 06:41:01pooliesetnosy: + poolie
messages: + msg142687
2010-11-18 23:49:37mihaicsetnosy: + mihaic
2010-07-13 22:52:21belopolskysetdependencies: + Add pure Python implementation of datetime module to CPython
messages: + msg110240
2010-06-05 18:53:41techtoniksetmessages: + msg107160
2010-06-05 16:00:45belopolskysetmessages: + msg107144
2010-06-05 15:35:49techtoniksetmessages: + msg107140
2010-06-05 15:19:24techtoniksetmessages: + msg107139
2010-06-04 15:38:06r.david.murraysetmessages: + msg107069
2010-06-04 15:07:27belopolskysetmessages: + msg107066
2010-06-04 01:01:36r.david.murraysetdependencies: + datetime lacks concrete tzinfo implementation for UTC
messages: + msg107000
2010-05-26 14:31:45techtoniksetmessages: + msg106527
2010-05-25 23:52:50belopolskysetassignee: belopolsky

nosy: + belopolsky
2010-05-09 18:13:26daniel.urbansetfiles: + issue7584_2.diff

messages: + msg105405
2010-05-09 15:56:00r.david.murraysetnosy: + r.david.murray

messages: + msg105399
versions: - Python 3.1, Python 2.7
2010-05-09 13:31:58techtoniksetmessages: + msg105394
2010-04-30 12:05:56daniel.urbansetmessages: + msg104631
2010-04-30 10:18:28techtoniksetmessages: + msg104615
2010-04-29 19:55:53daniel.urbansetmessages: + msg104578
2010-04-28 21:40:27techtoniksetmessages: + msg104465
2010-04-28 21:02:36techtoniksetmessages: + msg104463
2010-04-28 17:40:08daniel.urbansetmessages: + msg104442
2010-04-28 08:44:38techtoniksetmessages: + msg104420
2010-04-28 08:13:56l0nwlfsetnosy: + l0nwlf
messages: + msg104418
2010-04-28 08:04:41daniel.urbansetmessages: + msg104417
2010-04-13 13:57:58daniel.urbansetfiles: + issue7584.diff

nosy: + daniel.urban
messages: + msg103051

keywords: + patch
2010-04-09 08:47:19techtoniksetmessages: + msg102700
2010-04-09 02:50:10eric.araujosetmessages: + msg102672
2010-04-09 02:48:13eric.araujosetnosy: + eric.araujo
messages: + msg102671
2010-04-09 02:43:19ajaksu2setpriority: normal

type: enhancement

keywords: + easy
nosy: + ajaksu2
messages: + msg102670
stage: needs patch
2009-12-27 19:18:06techtonikcreate