diff options
author | Alexander Belopolsky <abalkin@users.noreply.github.com> | 2017-07-31 14:26:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-31 14:26:50 (GMT) |
commit | 018d353c1c8c87767d2335cd884017c2ce12e045 (patch) | |
tree | 36a485b724114e393901f3fa16d741cc63bd7cb2 /Misc | |
parent | c6ea8974e2d939223bfd6d64ee13ec89c090d2e0 (diff) | |
download | cpython-018d353c1c8c87767d2335cd884017c2ce12e045.zip cpython-018d353c1c8c87767d2335cd884017c2ce12e045.tar.gz cpython-018d353c1c8c87767d2335cd884017c2ce12e045.tar.bz2 |
Closes issue bpo-5288: Allow tzinfo objects with sub-minute offsets. (#2896)
* Closes issue bpo-5288: Allow tzinfo objects with sub-minute offsets.
* bpo-5288: Implemented %z formatting of sub-minute offsets.
* bpo-5288: Removed mentions of the whole minute limitation on TZ offsets.
* bpo-5288: Removed one more mention of the whole minute limitation.
Thanks @csabella!
* Fix a formatting error in the docs
* Addressed review comments.
Thanks, @haypo.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-07-26-13-18-29.bpo-5288.o_xEGj.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-07-26-13-18-29.bpo-5288.o_xEGj.rst b/Misc/NEWS.d/next/Library/2017-07-26-13-18-29.bpo-5288.o_xEGj.rst new file mode 100644 index 0000000..a7eaa06 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-07-26-13-18-29.bpo-5288.o_xEGj.rst @@ -0,0 +1 @@ +Support tzinfo objects with sub-minute offsets. |