[issue26719] More efficient formatting of ints and floats in json

2016-04-10 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.5 ___ Python tracker

[issue26719] More efficient formatting of ints and floats in json

2016-04-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4d4febb76864 by Serhiy Storchaka in branch '3.5': Issue #26719: More efficient formatting of ints and floats in json. https://hg.python.org/cpython/rev/4d4febb76864 New changeset 36b15a9776ae by Serhiy Storchaka in branch 'default': Issue #26719: Mo

[issue26719] More efficient formatting of ints and floats in json

2016-04-09 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: There is similar issue with unneeded strings copying: issue26057. -- ___ Python tracker ___ ___ Py

[issue26719] More efficient formatting of ints and floats in json

2016-04-09 Thread Guido van Rossum
Guido van Rossum added the comment: Please also backport to 3.5.2... On Saturday, April 9, 2016, Raymond Hettinger wrote: > > Raymond Hettinger added the comment: > > +1 This is a nice improvement. > > -- > > ___ > Python tracker > >

[issue26719] More efficient formatting of ints and floats in json

2016-04-09 Thread Raymond Hettinger
Raymond Hettinger added the comment: +1 This is a nice improvement. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue26719] More efficient formatting of ints and floats in json

2016-04-09 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch provide more efficient solution of issue18264. Instead of creating new int or float object and then converting it to string, the patch directly uses functions that does int and float conversion to string. -- components: Extension Mod