Message10263

Author zyasoft
Recipients umair, zyasoft
Date 2015-09-17.20:30:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1442521857.47.0.0776111799967.issue2377@psf.upfronthosting.co.za>
In-reply-to
Content
Separately when I was testing the python-instagram package, simplejson is reporting an issue when attempting to use C speedups. That's unfortunate since Jython does support the standard json module

$ jython -c "import instagram"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/Users/jbaker/jythondev/jython27/dist/Lib/site-packages/instagram/__init__.py", line 1, in <module>
    from .bind import InstagramAPIError, InstagramClientError
  File "/Users/jbaker/jythondev/jython27/dist/Lib/site-packages/instagram/bind.py", line 2, in <module>
    from .oauth2 import OAuth2Request
  File "/Users/jbaker/jythondev/jython27/dist/Lib/site-packages/instagram/oauth2.py", line 1, in <module>
    from .json_import import simplejson
  File "/Users/jbaker/jythondev/jython27/dist/Lib/site-packages/instagram/json_import.py", line 2, in <module>
    import simplejson
  File "/Users/jbaker/jythondev/jython27/dist/Lib/site-packages/instagram/json_import.py", line 2, in <module>
    import simplejson
  File "/Users/jbaker/jythondev/jython27/dist/Lib/site-packages/simplejson/__init__.py", line 113, in <module>
    from .encoder import JSONEncoder, JSONEncoderForHTML
  File "/Users/jbaker/jythondev/jython27/dist/Lib/site-packages/simplejson/encoder.py", line 15, in <module>
    c_encode_basestring_ascii, c_make_encoder = _import_speedups()
  File "/Users/jbaker/jythondev/jython27/dist/Lib/site-packages/simplejson/encoder.py", line 12, in _import_speedups
    return _speedups.encode_basestring_ascii, _speedups.make_encoder
  File "/Users/jbaker/jythondev/jython27/dist/Lib/site-packages/simplejson/encoder.py", line 12, in _import_speedups
    return _speedups.encode_basestring_ascii, _speedups.make_encoder
AttributeError: 'NoneType' object has no attribute 'encode_basestring_ascii'
History
Date User Action Args
2015-09-17 20:30:57zyasoftsetmessageid: <1442521857.47.0.0776111799967.issue2377@psf.upfronthosting.co.za>
2015-09-17 20:30:57zyasoftsetrecipients: + zyasoft, umair
2015-09-17 20:30:57zyasoftlinkissue2377 messages
2015-09-17 20:30:56zyasoftcreate