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 andrewchap
Recipients andrewchap, bob.ippolito, rhettinger
Date 2018-10-31.17:57:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <MWHPR05MB3262E49058597A040888CFD6C1CD0@MWHPR05MB3262.namprd05.prod.outlook.com>
In-reply-to <1540966643.74.0.788709270274.issue35111@psf.upfronthosting.co.za>
Content
Bob,

I understand what you are saying, but having a built-in is way easier than encoder/decoders.  You can still have both actually.  Even if you didn't have two way, a one way would be amazingly helpful.  For large development systems, a __json__ method would make serialization super easy.

class foo(object):
     a = 1
     b = [1,2,3]
     def __json__(self): return {'a':self.a,'b':self.b}
History
Date User Action Args
2018-10-31 17:57:02andrewchapsetrecipients: + andrewchap, rhettinger, bob.ippolito
2018-10-31 17:57:02andrewchaplinkissue35111 messages
2018-10-31 17:57:02andrewchapcreate