Code Review
/
common
/
thrift.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
691ec00
)
THRIFT-1745 Python JSON protocol
author
Roger Meier
<roger@apache.org>
Fri, 2 Nov 2012 10:36:59 +0000
(10:36 +0000)
committer
Roger Meier
<roger@apache.org>
Fri, 2 Nov 2012 10:36:59 +0000
(10:36 +0000)
fix typo detected by cross language test suite
git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@
1404914
13f79535
-47bb-0310-9956-
ffa450edef68
lib/py/src/protocol/TJSONProtocol.py
patch
|
blob
|
history
diff --git
a/lib/py/src/protocol/TJSONProtocol.py
b/lib/py/src/protocol/TJSONProtocol.py
index
97bc763
..
57872bd
100644
(file)
--- a/
lib/py/src/protocol/TJSONProtocol.py
+++ b/
lib/py/src/protocol/TJSONProtocol.py
@@
-46,7
+46,7
@@
CTYPES = {TType.BOOL: 'tf',
TType.I64: 'i64',
TType.DOUBLE: 'dbl',
TType.STRING: 'str',
- TType.STRUCT: 'rec
t
',
+ TType.STRUCT: 'rec',
TType.LIST: 'lst',
TType.SET: 'set',
TType.MAP: 'map'}