This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients af, serhiy.storchaka
Date 2019-08-16.14:29:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1565965746.76.0.478372185623.issue37874@roundup.psfhosted.org>
In-reply-to
Content
1.0e-8 is not a format for numbers in JSON. See RFC 7159 (https://tools.ietf.org/html/rfc7159.html#section-6):

      number = [ minus ] int [ frac ] [ exp ]

      decimal-point = %x2E       ; .

      digit1-9 = %x31-39         ; 1-9

      e = %x65 / %x45            ; e E

      exp = e [ minus / plus ] 1*DIGIT

      frac = decimal-point 1*DIGIT

      int = zero / ( digit1-9 *DIGIT )

      minus = %x2D               ; -

      plus = %x2B                ; +

      zero = %x30                ; 0
History
Date User Action Args
2019-08-16 14:29:06serhiy.storchakasetrecipients: + serhiy.storchaka, af
2019-08-16 14:29:06serhiy.storchakasetmessageid: <1565965746.76.0.478372185623.issue37874@roundup.psfhosted.org>
2019-08-16 14:29:06serhiy.storchakalinkissue37874 messages
2019-08-16 14:29:06serhiy.storchakacreate