[issue29193] Remove support of format_string as keyword argument in string.Formatter().format()

2017-03-31 Thread Donald Stufft
Changes by Donald Stufft : -- pull_requests: +832 ___ Python tracker ___ ___

[issue29193] Remove support of format_string as keyword argument in string.Formatter().format()

2017-01-12 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue29193] Remove support of format_string as keyword argument in string.Formatter().format()

2017-01-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset d571d8cd4258 by Serhiy Storchaka in branch 'default': Issue #29193: A format string argument for string.Formatter.format() https://hg.python.org/cpython/rev/d571d8cd4258 -- nosy: +python-dev ___ Python

[issue29193] Remove support of format_string as keyword argument in string.Formatter().format()

2017-01-12 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___

[issue29193] Remove support of format_string as keyword argument in string.Formatter().format()

2017-01-07 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Passing a format string as a keyword argument to string.Formatter.format() was deprecated in 3.5 (issue23671). Proposed patch finishes the deprecation period and converts a warning to an error. Python 3.5-3.6: >>>