Opened 14 years ago
Closed 14 years ago
#711 closed defect (fixed)
Adopt to json changes in python-2.6
Reported by: | erikos | Owned by: | wadeb |
---|---|---|---|
Priority: | Unspecified by Maintainer | Milestone: | Unspecified |
Component: | TypingTurtle | Version: | Git as of bugdate |
Severity: | Blocker | Keywords: | |
Cc: | r? | Distribution/OS: | Unspecified |
Bug Status: | Assigned |
Description
currently it is using python-json
Attachments (1)
Change History (9)
comment:1 Changed 14 years ago by wadeb
- Status changed from new to accepted
comment:2 Changed 14 years ago by erikos
- Bug Status changed from Unconfirmed to New
- Severity changed from Unspecified to Blocker
- Summary changed from Consider switching to cjson to Adopt to json changes in python-2.6
- Version changed from Unspecified to Git as of bugdate
comment:3 Changed 14 years ago by erikos
Wadeb, any news on this?
Changed 14 years ago by erikos
Move to simplejson (which is now standard -> import json in Python 2.6)
comment:4 Changed 14 years ago by erikos
- Bug Status changed from New to Assigned
- Cc r? added
comment:5 follow-up: ↓ 6 Changed 14 years ago by wadeb
Thanks for the patch!
Sorry about the delay in making the release. I have some development changes in mainline which prevent me from making a release. I need to retroactively create a branch, and I'm still working out how to do that in Git.
comment:6 in reply to: ↑ 5 Changed 14 years ago by garycmartin
Replying to wadeb:
Sorry about the delay in making the release. I have some development changes in mainline which prevent me from making a release. I need to retroactively create a branch, and I'm still working out how to do that in Git.
Still pretty rough once I'm off the basic workflow, but I did find this a useful git article:
comment:7 Changed 14 years ago by erikos
What is the status of this, would like to get this into Soas again?
comment:8 Changed 14 years ago by erikos
- Resolution set to fixed
- Status changed from accepted to closed
In version 19.
More important then I thought:
In python2.6 simplejson is part of the language itself - this is what you get when you do: import json (what typingT does). However: when you did 'import json' before (python 2.5) - you got another json implementation, the one typingT is relying on.
To run on soas (F11, python 2.6) TT needs to be changed to use the new json (simplejson) API or moved to cjson like the other glucose and fructose modules.