We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffcd026 commit edf82b6Copy full SHA for edf82b6
roundup/scripts/roundup_server.py
@@ -17,7 +17,7 @@
17
18
"""Command-line script that runs a server over roundup.cgi.client.
19
20
-$Id: roundup_server.py,v 1.92 2007-09-07 20:27:46 jpend Exp $
+$Id: roundup_server.py,v 1.93 2007-09-09 16:03:13 jpend Exp $
21
"""
22
__docformat__ = 'restructuredtext'
23
@@ -120,12 +120,12 @@ class RetryingFile(object):
120
def __init__(self, fileobj):
121
self.__fileobj = fileobj
122
123
- def readline(self):
+ def readline(self, *args):
124
""" SSL.Connection can return WantRead """
125
line = None
126
while not line:
127
try:
128
- line = self.__fileobj.readline()
+ line = self.__fileobj.readline(*args)
129
except SSL.WantReadError:
130
131
return line
0 commit comments