[jira] [Updated] (THRIFT-3323) Python library does not handle escaped forward slash ("/") in JSON

2015-09-13 Thread Subrat Basnet (JIRA)
[ https://issues.apache.org/jira/browse/THRIFT-3323?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Subrat Basnet updated THRIFT-3323: -- Priority: Minor (was: Major) > Python library does not handle escaped forward slash ("/") in

[jira] [Assigned] (THRIFT-3323) Python library does not handle escaped forward slash ("/") in JSON

2015-09-13 Thread Jens Geyer (JIRA)
[ https://issues.apache.org/jira/browse/THRIFT-3323?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jens Geyer reassigned THRIFT-3323: -- Assignee: Jens Geyer > Python library does not handle escaped forward slash ("/") in JSON >

[jira] [Commented] (THRIFT-3323) Python library does not handle escaped forward slash ("/") in JSON

2015-09-13 Thread Subrat Basnet (JIRA)
[ https://issues.apache.org/jira/browse/THRIFT-3323?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=14742563#comment-14742563 ] Subrat Basnet commented on THRIFT-3323: --- I've tested and added a fix for this. Pretty simple :)

[GitHub] thrift pull request: Update TJSONProtocol.py

2015-09-13 Thread grepsr
Github user grepsr commented on the pull request: https://github.com/apache/thrift/pull/605#issuecomment-139897329 THRIFT-3323 Done, thanks! --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does

[jira] [Commented] (THRIFT-3323) Python library does not handle escaped forward slash ("/") in JSON

2015-09-13 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/THRIFT-3323?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=14742564#comment-14742564 ] ASF GitHub Bot commented on THRIFT-3323: Github user grepsr commented on the pull request:

[GitHub] thrift pull request: Update TJSONProtocol.py

2015-09-13 Thread Jens-G
Github user Jens-G commented on the pull request: https://github.com/apache/thrift/pull/605#issuecomment-139896185 Hi, if you could just [file a JIRA ticket with all details](http://thrift.apache.org/docs/HowToContribute) and link it to this PR by mentioning the ticket

[jira] [Created] (THRIFT-3323) Python library does not handle escaped forward slash ("/") in JSON

2015-09-13 Thread Subrat Basnet (JIRA)
Subrat Basnet created THRIFT-3323: - Summary: Python library does not handle escaped forward slash ("/") in JSON Key: THRIFT-3323 URL: https://issues.apache.org/jira/browse/THRIFT-3323 Project: Thrift

[GitHub] thrift pull request: Update TJSONProtocol.py

2015-09-13 Thread grepsr
GitHub user grepsr opened a pull request: https://github.com/apache/thrift/pull/605 Update TJSONProtocol.py According to JSON spec a forward slash "/" may be escaped too; and when that happened, it triggered an issue with deserializing the object. This small fix addresses