diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-12-24 00:29:04 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-12-24 00:29:04 (GMT) |
commit | 5512f32d91fd20a649d1864dbaf25ab9eeac8238 (patch) | |
tree | 0d960df30c24d234141a869b7e680cf27c88eaa6 /Doc/includes | |
parent | 9e335fb3c57c7d1b8c055250c329efb545e8978c (diff) | |
download | cpython-5512f32d91fd20a649d1864dbaf25ab9eeac8238.zip cpython-5512f32d91fd20a649d1864dbaf25ab9eeac8238.tar.gz cpython-5512f32d91fd20a649d1864dbaf25ab9eeac8238.tar.bz2 |
Merged revisions 87463 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r87463 | alexander.belopolsky | 2010-12-23 19:24:11 -0500 (Thu, 23 Dec 2010) | 1 line
Issue #9063: Corrected the tzinfo example.
........
Diffstat (limited to 'Doc/includes')
-rw-r--r-- | Doc/includes/tzinfo-examples.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/includes/tzinfo-examples.py b/Doc/includes/tzinfo-examples.py index 2de95d4..5132429 100644 --- a/Doc/includes/tzinfo-examples.py +++ b/Doc/includes/tzinfo-examples.py @@ -71,7 +71,7 @@ class LocalTimezone(tzinfo): def _isdst(self, dt): tt = (dt.year, dt.month, dt.day, dt.hour, dt.minute, dt.second, - dt.weekday(), 0, -1) + dt.weekday(), 0, 0) stamp = _time.mktime(tt) tt = _time.localtime(stamp) return tt.tm_isdst > 0 |