Commit 57cb2331 authored by colinfang's avatar colinfang

Fix document error "*.pyx" -> ["*.pyx"]

parent 2f14969c
......@@ -68,7 +68,7 @@ explicitly, you can use glob patterns::
You can also use glob patterns in :class:`Extension` objects if you pass
them through :func:`cythonize`::
extensions = [Extension("*", "*.pyx")]
extensions = [Extension("*", ["*.pyx"])]
setup(
ext_modules = cythonize(extensions)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment