diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-05-13 09:40:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-13 09:40:52 (GMT) |
commit | 7e19dbc92ec06a987eaae72f7cdfd32006aa4960 (patch) | |
tree | 29a0b2c806b128c9c111b09b0c01ba3107e88bce /Misc | |
parent | a66f9c6bb134561a24374f10e8c35417d356ce14 (diff) | |
download | cpython-7e19dbc92ec06a987eaae72f7cdfd32006aa4960.zip cpython-7e19dbc92ec06a987eaae72f7cdfd32006aa4960.tar.gz cpython-7e19dbc92ec06a987eaae72f7cdfd32006aa4960.tar.bz2 |
bpo-28974: `object.__format__(x, '')` is now equivalent to `str(x)` (#506)
rather than `format(str(self), '')`.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.7.0 alpha 1? Core and Builtins ----------------- +- bpo-28974: ``object.__format__(x, '')`` is now equivalent to ``str(x)`` + rather than ``format(str(self), '')``. + - bpo-30024: Circular imports involving absolute imports with binding a submodule to a name are now supported. |