Implementation of the basic Thrift stack in Python
authorMark Slee <mcslee@apache.org>
Sun, 3 Sep 2006 21:13:07 +0000 (21:13 +0000)
committerMark Slee <mcslee@apache.org>
Sun, 3 Sep 2006 21:13:07 +0000 (21:13 +0000)
commitcde2b61c5e3a26fd6ad5bc1a6fcdee449696d66c
treeb238b0f6ce3c18d92e59ec4ca4836fcfa77a95c9
parentdafa3cf710b21049f929500ca57957709f46b941
Implementation of the basic Thrift stack in Python

Summary: Framework, install script, base classes, TSocket, TBinaryProtocol

Notes: Code-gen is coming around the bend...

git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664778 13f79535-47bb-0310-9956-ffa450edef68
lib/py/setup.py [new file with mode: 0644]
lib/py/src/Thrift.py [new file with mode: 0644]
lib/py/src/__init__.py [new file with mode: 0644]
lib/py/src/protocol/TBinaryProtocol.py [new file with mode: 0644]
lib/py/src/protocol/TProtocol.py [new file with mode: 0644]
lib/py/src/protocol/__init__.py [new file with mode: 0644]
lib/py/src/transport/TSocket.py [new file with mode: 0644]
lib/py/src/transport/TTransport.py [new file with mode: 0644]
lib/py/src/transport/__init__.py [new file with mode: 0644]