[issue9856] Change object.__format__(s) where s is non-empty to a DeprecationWarning

2011-03-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset ee259a4f3eee by Eric V. Smith in branch 'default': Issue 9856: Change object.__format__ with a non-empty format string from a PendingDeprecationWarning to a DeprecationWarning. http://hg.python.org/cpython/rev/ee259a4f3eee -- nosy: +python

[issue9856] Change object.__format__(s) where s is non-empty to a DeprecationWarning

2010-09-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: Perhaps this could be expanded to "Deprecation warnings in 3.3" with release-blocker priority to list all 3.2 PendingDWs. Once changes are made, it could be retitled "Removals in 3.4", with a new "Deprecation warnings in 3.4" added. -- nosy: +terry.r

[issue9856] Change object.__format__(s) where s is non-empty to a DeprecationWarning

2010-09-14 Thread Eric Smith
New submission from Eric Smith : In 3.3 the existing PendingDeprecationWarning needs to become a DeprecationWarning. In 3.4 it will become an error. I'll change 3.3 after 3.2 is released. See issue 7994 for the original PendingDeprecationWarning discussion. -- assignee: eric.smith com