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 eajames
Recipients eajames, eric.smith, mark.dickinson, r.david.murray
Date 2016-09-02.16:08:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1472832493.89.0.462078610933.issue27934@psf.upfronthosting.co.za>
In-reply-to
Content
Python 2.7 also already behaves correctly for other dbus types:

Python 2.7.6 (default, Jun 22 2015, 17:58:13) 
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import dbus
>>> import json
>>> x = dbus.Int32(3)
>>> x
dbus.Int32(3)
>>> json.dumps(x)
'3'
>>> repr(x)
'dbus.Int32(3)'
History
Date User Action Args
2016-09-02 16:08:13eajamessetrecipients: + eajames, mark.dickinson, eric.smith, r.david.murray
2016-09-02 16:08:13eajamessetmessageid: <1472832493.89.0.462078610933.issue27934@psf.upfronthosting.co.za>
2016-09-02 16:08:13eajameslinkissue27934 messages
2016-09-02 16:08:13eajamescreate