gorealis v2 refactor (#5)
* Changing default timeout for start maintenance. * Upgrading dependencies to gorealis v2 and thrift 0.12.0 * Refactored to update to gorealis v2.
This commit is contained in:
parent
ad4dd9606e
commit
6ab5c9334d
1335 changed files with 137431 additions and 61530 deletions
5
vendor/git.apache.org/thrift.git/test/py/FastbinaryTest.py
generated
vendored
5
vendor/git.apache.org/thrift.git/test/py/FastbinaryTest.py
generated
vendored
|
@ -50,6 +50,7 @@ class TDevNullTransport(TTransport.TTransportBase):
|
|||
def isOpen(self):
|
||||
return True
|
||||
|
||||
|
||||
ooe1 = OneOfEach()
|
||||
ooe1.im_true = True
|
||||
ooe1.im_false = False
|
||||
|
@ -85,6 +86,10 @@ hm.big[1].a_bite = 0x22
|
|||
|
||||
hm.contain.add(("and a one", "and a two"))
|
||||
hm.contain.add(("then a one, two", "three!", "FOUR!"))
|
||||
if sys.version_info[0] == 2 and os.environ.get('THRIFT_TEST_PY_NO_UTF8STRINGS'):
|
||||
hm.contain.add((u"\xd7\n\a\t".encode('utf8'),))
|
||||
else:
|
||||
hm.contain.add((u"\xd7\n\a\t",))
|
||||
hm.contain.add(())
|
||||
|
||||
hm.bonks["nothing"] = []
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue