msg91256 - (view) |
Author: Esteban Feldman (eka) |
Date: 2009-08-04 14:04 |
When trying to use datetime.strptime %z directive got an unexpected error.
>>> from datetime import datetime
>>>
>>> fecha = u'Sun Aug 02 19:01:25 +0000 2009'
>>> datetime.strptime(fecha, '%a %b %d %H:%M:%S %z %Y')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.6/_strptime.py", line 317, in _strptime
(bad_directive, format))
ValueError: 'z' is a bad directive in format '%a %b %d %H:%M:%S %z %Y'
|
msg91282 - (view) |
Author: David House (dmhouse) |
Date: 2009-08-04 23:03 |
From the documentation from time.strptime() (which acts the same as
datetime.strptime()):
"Only the directives specified in the documentation [of time.strftime()]
are supported. Because strftime() is implemented per platform it can
sometimes offer more directives than those listed. But strptime() is
independent of any platform and thus does not necessarily support all
directives available that are not documented as supported."
So I think invalid.
|
msg91763 - (view) |
Author: Andrew Brown (abrown) |
Date: 2009-08-20 09:03 |
I think this bug is just a doc bug. If you check
http://docs.python.org/library/datetime.html?highlight=strptime#strftime-behavior
and
http://docs.python.org/library/time.html?highlight=strptime#time.strptime
You can see that the first link lists %z as a valid modifier, while in
the second link (in footnote 1) it is mentioned as deprecated.
|
msg91780 - (view) |
Author: David House (dmhouse) |
Date: 2009-08-20 16:39 |
Yes and no.
Firstly, %z isn't listed as deprecated in the documentation of the time
module's strftime -- although %Z is (note differing case).
Secondly, I still think the bug is invalid, because the documentation of
datetime.datetime.strptime says it behaves like time.strptime, whose
documentation says "only the directives specified in the documentation
[of strftime()] are supported". Since we're in the time module, that
reference to strftime() means time.strftime(), which doesn't list %z as
a directive.
Finally, there *is* a confusing docs issue, however: the "strftime()
behaviour" section in the datetime module documentation lists %z as a
valid directive, whereas it's not listed in time.strftime. Although
these functions have in theory nothing to do with one another, you would
in practice expect them to support the same directives.
Since in fact the footnote in the documentation of time.strftime() says
%z isn't supported by all ANSI C platforms (despite apparently being
required by the standard), I suggest that %z be removed from the list of
allowed modifiers in the "strftime() behaviour" section in the datetime
module documentation.
|
msg106434 - (view) |
Author: dudologist (dudologist) |
Date: 2010-05-25 13:22 |
If %z works only in certain circumstances that behaviour should be documented wherever %z is referred to.
|
msg106473 - (view) |
Author: Alexander Belopolsky (belopolsky) * |
Date: 2010-05-25 20:37 |
If concrete tzinfo subclass is added to datetime module (see issue5094), it will become feasible to meaningfully parse timezone information.
|
msg107329 - (view) |
Author: Alexander Belopolsky (belopolsky) * |
Date: 2010-06-08 16:40 |
Attached patch includes issue 5094 patch.
|
msg107549 - (view) |
Author: Mark Dickinson (mark.dickinson) * |
Date: 2010-06-11 14:43 |
It's a little awkward to review this patch independently of the issue 5094 patch. Can we work on issue 5094 first, and then come back to this one?
|
msg107555 - (view) |
Author: Alexander Belopolsky (belopolsky) * |
Date: 2010-06-11 15:27 |
On Fri, Jun 11, 2010 at 10:43 AM, Mark Dickinson <report@bugs.python.org> wrote:
..
> It's a little awkward to review this patch independently of the issue 5094 patch.
> Can we work on issue 5094 first, and then come back to this one?
Sure. Unfortunately, I think I fixed a few timezone doc warts here
and did not update 5094. I will fix that.
|
msg107797 - (view) |
Author: Alexander Belopolsky (belopolsky) * |
Date: 2010-06-14 16:09 |
With issue5094 patch now committed, I am replacing issue6641.diff with a new version that does not include issue5094.
|
msg107902 - (view) |
Author: Alexander Belopolsky (belopolsky) * |
Date: 2010-06-16 02:22 |
Mark,
I am reassigning this to you for a commit review.
|
msg108032 - (view) |
Author: Mark Dickinson (mark.dickinson) * |
Date: 2010-06-17 16:40 |
Doc nit: "When ``%z`` directive" -> "When the ``%z`` directive"
The _strptime._strptime docstring is inaccurate: it claim to return a time struct, but actually returns tuple, int; please could you also add docstrings for _strptime_time and _strptime_datetime?
Spacing in datetimemodule.c: "if( module == NULL)" -> "if (module == NULL)". Also, is there any particular reason for initializing 'result' to NULL? (Or even for using result at all; you could just do "return PyObject_CallMethod(... ").
I'm mildly distressed by the inability of strptime to parse UTC offsets in the +HH:MM form that str(timezone) produces, but I'm not sure what the solution to that is.
Otherwise, this all looks good to my non-expert eye.
|
msg108033 - (view) |
Author: Mark Dickinson (mark.dickinson) * |
Date: 2010-06-17 16:43 |
Hmm. Hold on a sec; I'm getting test failures...
|
msg108034 - (view) |
Author: Mark Dickinson (mark.dickinson) * |
Date: 2010-06-17 16:44 |
In test_datetime:
======================================================================
ERROR: test_strptime (__main__.TestDateTime)
----------------------------------------------------------------------
Traceback (most recent call last):
File "Lib/test/test_datetime.py", line 1741, in test_strptime
dt = strptime("-0500 EST", "%z %Z")
File "/Users/dickinsm/python/svn/py3k/Lib/_strptime.py", line 483, in _strptime_datetime
tt, fraction = _strptime(data_string, format)
File "/Users/dickinsm/python/svn/py3k/Lib/_strptime.py", line 336, in _strptime
(data_string, format))
ValueError: time data '-0500 EST' does not match format '%z %Z'
======================================================================
ERROR: test_strptime (__main__.TestDateTimeTZ)
----------------------------------------------------------------------
Traceback (most recent call last):
File "Lib/test/test_datetime.py", line 1741, in test_strptime
dt = strptime("-0500 EST", "%z %Z")
File "/Users/dickinsm/python/svn/py3k/Lib/_strptime.py", line 483, in _strptime_datetime
tt, fraction = _strptime(data_string, format)
File "/Users/dickinsm/python/svn/py3k/Lib/_strptime.py", line 336, in _strptime
(data_string, format))
ValueError: time data '-0500 EST' does not match format '%z %Z'
|
msg108038 - (view) |
Author: Alexander Belopolsky (belopolsky) * |
Date: 2010-06-17 17:53 |
issue6641a.diff fixes the nits that Mark found and makes the tests robust with respect to change of timezones. Tested with all timezones avalilable on OSX including TZ="Eire". (Ever heard of Ouagadougou?)
Parsing RFC 3339's HH:MM format is a separate issue. I am +1 on either adding %:z specifier or simply allow HH:MM for %z.
|
msg108039 - (view) |
Author: Mark Dickinson (mark.dickinson) * |
Date: 2010-06-17 18:00 |
LGTM.
|
msg108041 - (view) |
Author: Alexander Belopolsky (belopolsky) * |
Date: 2010-06-17 18:32 |
Committed in r82053.
|
msg108115 - (view) |
Author: Alexander Belopolsky (belopolsky) * |
Date: 2010-06-18 15:43 |
Reopening because the patch introduced a regression with respect to datetime subclasses:
>>> class DT(datetime): pass
...
>>> DT.strptime('', '')
datetime.datetime(1900, 1, 1, 0, 0)
a DT instance expected. Need tests covering subclasses.
|
msg108116 - (view) |
Author: Alexander Belopolsky (belopolsky) * |
Date: 2010-06-18 16:10 |
Attaching issue6641b.diff that fixes subclassing issue. Added tests for datetime subclass only to keep the patch focused. Adding tests for datetime and time subclasses will be natural in issue 1100942.
|
msg108117 - (view) |
Author: Alexander Belopolsky (belopolsky) * |
Date: 2010-06-18 17:06 |
Replacing issue6641b.diff after fixing some spelling errors. Thanks, Ezio.
|
msg108127 - (view) |
Author: Alexander Belopolsky (belopolsky) * |
Date: 2010-06-18 18:49 |
Committed in r82073.
|
msg108166 - (view) |
Author: Éric Araujo (eric.araujo) * |
Date: 2010-06-19 04:36 |
PEP 8 says: “If your public attribute name collides with a reserved keyword, append a single trailing underscore to your attribute name. This is preferable to an abbreviation or corrupted spelling.” e.g. “class_” is used for an HTML class. “(However, notwithstanding this rule, 'cls' is the preferred spelling for any variable or argument which is known to be a class, especially the first argument to a class method.)” I’d like this recommendation to be followed, even if it’s in an internal function.
|
|
Date |
User |
Action |
Args |
2022-04-11 14:56:51 | admin | set | github: 50890 |
2010-10-14 17:54:47 | belopolsky | link | issue4086 superseder |
2010-06-19 04:36:22 | eric.araujo | set | messages:
+ msg108166 |
2010-06-18 18:49:24 | belopolsky | set | status: open -> closed
messages:
+ msg108127 stage: test needed -> resolved |
2010-06-18 17:09:13 | belopolsky | set | files:
- issue6641b.diff |
2010-06-18 17:09:07 | belopolsky | set | files:
+ issue6641b.diff |
2010-06-18 17:06:33 | belopolsky | set | files:
- issue6641b.diff |
2010-06-18 17:06:20 | belopolsky | set | files:
+ issue6641b.diff
messages:
+ msg108117 |
2010-06-18 16:10:18 | belopolsky | set | files:
+ issue6641b.diff
messages:
+ msg108116 |
2010-06-18 15:43:37 | belopolsky | set | status: closed -> open
messages:
+ msg108115 stage: resolved -> test needed |
2010-06-17 18:33:17 | belopolsky | set | status: open -> closed stage: commit review -> resolved |
2010-06-17 18:32:47 | belopolsky | set | messages:
+ msg108041 |
2010-06-17 18:00:29 | mark.dickinson | set | messages:
+ msg108039 |
2010-06-17 17:53:50 | belopolsky | set | files:
+ issue6641a.diff resolution: accepted messages:
+ msg108038
|
2010-06-17 16:44:56 | mark.dickinson | set | messages:
+ msg108034 |
2010-06-17 16:43:52 | mark.dickinson | set | messages:
+ msg108033 |
2010-06-17 16:40:48 | mark.dickinson | set | assignee: mark.dickinson -> belopolsky messages:
+ msg108032 |
2010-06-16 02:22:11 | belopolsky | set | assignee: belopolsky -> mark.dickinson messages:
+ msg107902 |
2010-06-16 02:21:11 | belopolsky | set | files:
- issue6641.diff |
2010-06-16 02:21:03 | belopolsky | set | files:
+ issue6641.diff |
2010-06-14 16:09:27 | belopolsky | set | files:
- issue6641.diff |
2010-06-14 16:09:18 | belopolsky | set | files:
+ issue6641.diff
messages:
+ msg107797 title: strptime doesn't support %z format ? -> datetime.strptime doesn't support %z format ? |
2010-06-11 15:27:15 | belopolsky | set | messages:
+ msg107555 |
2010-06-11 14:43:31 | mark.dickinson | set | messages:
+ msg107549 |
2010-06-08 16:40:27 | belopolsky | set | files:
+ issue6641.diff
nosy:
+ mark.dickinson messages:
+ msg107329
keywords:
+ patch stage: test needed -> commit review |
2010-06-08 14:15:29 | belopolsky | set | dependencies:
+ datetime lacks concrete tzinfo implementation for UTC type: behavior -> enhancement stage: test needed versions:
+ Python 3.2, - Python 2.6 |
2010-06-01 18:56:06 | eric.araujo | set | nosy:
+ eric.araujo
|
2010-05-25 21:20:30 | brett.cannon | set | nosy:
+ brett.cannon
|
2010-05-25 20:37:18 | belopolsky | set | assignee: belopolsky messages:
+ msg106473 |
2010-05-25 17:20:46 | r.david.murray | set | nosy:
+ belopolsky
|
2010-05-25 13:22:54 | dudologist | set | nosy:
+ dudologist messages:
+ msg106434
|
2009-08-20 16:39:34 | dmhouse | set | messages:
+ msg91780 |
2009-08-20 09:03:24 | abrown | set | nosy:
+ abrown messages:
+ msg91763
|
2009-08-04 23:03:34 | dmhouse | set | nosy:
+ dmhouse messages:
+ msg91282
|
2009-08-04 14:04:36 | eka | create | |