This website works better with JavaScript.
Home
Explore
Help
Sign In
brettlangdon
/
greenrpc
mirror of
https://github.com/brettlangdon/greenrpc.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Projects
0
Releases
5
Wiki
Activity
Browse Source
handle cases when results > buffer size
master
Brett Langdon
11 years ago
parent
37478a866c
commit
ad4b75edd0
1 changed files
with
4 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-1
greenrpc/base.py
+ 4
- 1
greenrpc/base.py
View File
@ -90,7 +90,10 @@ class BaseClient(object):
if
not
data
:
break
self
.
unpacker
.
feed
(
data
)
return
self
.
unpacker
.
next
(
)
try
:
return
self
.
unpacker
.
next
(
)
except
StopIteration
:
continue
def
__getattr__
(
self
,
method
)
:
def
wrapper
(
*
args
)
:
Write
Preview
Loading…
Cancel
Save