File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -1442,7 +1442,8 @@ def readline(self, raise_exception=False):
1442
1442
if self .socket :
1443
1443
recv = self .socket .recv
1444
1444
else :
1445
- recv = lambda bufsize : b''
1445
+ def recv (bufsize ):
1446
+ return b''
1446
1447
1447
1448
while True :
1448
1449
index = buf .find (b'\r \n ' )
Original file line number Diff line number Diff line change 15
15
maintainer = "Sean Reifschneider" ,
16
16
maintainer_email = "jafo@tummy.com" ,
17
17
url = "https://github.com/linsomniac/python-memcached" ,
18
- download_url = "https://github.com/linsomniac/python-memcached/releases/download/{0}/python-memcached-{0}.tar.gz" .format (version ),
18
+ download_url = "https://github.com/linsomniac/python-memcached/releases/download/{0}/python-memcached-{0}.tar.gz" .format (version ), # noqa
19
19
py_modules = ["memcache" ],
20
20
install_requires = open ('requirements.txt' ).read ().split (),
21
21
classifiers = [
You can’t perform that action at this time.
0 commit comments