Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python 2.5 compatibility #3

Closed
FrankBie opened this issue Oct 26, 2011 · 5 comments
Closed

Python 2.5 compatibility #3

FrankBie opened this issue Oct 26, 2011 · 5 comments

Comments

@FrankBie
Copy link

Please change import json to

try:
import json
except ImportError:
import simplejson as json

Legacy Systems use your api
Thanks

@jdennes
Copy link
Contributor

jdennes commented Oct 26, 2011

Thanks Frank - appreciate it.

@jonasvp
Copy link
Contributor

jonasvp commented Nov 30, 2011

Any way to get this in there as well? The createsend library fails on our server because of this issue...

@alcides
Copy link

alcides commented Nov 30, 2011

You might want to check my cpython25 branch:

https://github.com/alcides/createsend-python/tree/cpython25

@jonasvp
Copy link
Contributor

jonasvp commented Nov 30, 2011

Thanks, seems like we changed the exact same thing... though it seems you branched off an older createsend commit. Would probably make send to change this here so we're not all duplicating this patch.

@jdennes
Copy link
Contributor

jdennes commented Dec 2, 2011

Thanks guys. Merged that in and published new egg: http://pypi.python.org/pypi/createsend/

jdennes pushed a commit that referenced this issue Aug 3, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants