diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2015-09-28 01:56:09 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2015-09-28 01:56:09 (GMT) |
commit | c58c2cb392479fb88e999ff99404e32b94f93cf0 (patch) | |
tree | 5dbd18dd69d27c0c5ae6e8409a48dbc4ac3741b0 /Modules/_datetimemodule.c | |
parent | c944e34959914faabb57d18be7c04176d2bc5024 (diff) | |
parent | c79447b267b391857f4e61a8e05c97ff01f3e61a (diff) | |
download | cpython-c58c2cb392479fb88e999ff99404e32b94f93cf0.zip cpython-c58c2cb392479fb88e999ff99404e32b94f93cf0.tar.gz cpython-c58c2cb392479fb88e999ff99404e32b94f93cf0.tar.bz2 |
Closes issue #23600: Wrong results from tzinfo.fromutc().
Diffstat (limited to 'Modules/_datetimemodule.c')
-rw-r--r-- | Modules/_datetimemodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_datetimemodule.c b/Modules/_datetimemodule.c index 1d583a5..e3de537 100644 --- a/Modules/_datetimemodule.c +++ b/Modules/_datetimemodule.c @@ -3046,7 +3046,7 @@ tzinfo_fromutc(PyDateTime_TZInfo *self, PyObject *dt) goto Fail; if (dst == Py_None) goto Inconsistent; - if (delta_bool(delta) != 0) { + if (delta_bool((PyDateTime_Delta *)dst) != 0) { PyObject *temp = result; result = add_datetime_timedelta((PyDateTime_DateTime *)result, (PyDateTime_Delta *)dst, 1); |