We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7322560 commit b29585aCopy full SHA for b29585a
litefs.py
@@ -704,7 +704,7 @@ def _finish(self, content):
704
else:
705
rw.write(repr(s))
706
707
- rw.write(repr(s))
+ rw.write(repr(content))
708
try:
709
rw.close()
710
except:
setup.py
@@ -8,7 +8,12 @@
8
from setuptools import setup
9
except ImportError:
10
from distutils.core import setup
11
-from Cython.Build import cythonize
+try:
12
+ from Cython.Build import cythonize
13
+except ImportError:
14
+ import os
15
+ os.system('pip install cython')
16
17
18
long_description = '''\
19
使用 Python 从零开始构建一个 Web 服务器框架。 开发 Litefs 的是为了实现一个能快速、安\
0 commit comments