summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAditya Bhosale <adityapb1546@gmail.com>2016-03-06 01:00:54 +0530
committerStefan Behnel <stefan_ml@behnel.de>2016-03-24 14:24:50 +0100
commitd98998a26b3ea1d520564f928d7a1f1fc6986415 (patch)
treeb93324720de8da0196c02e22b80119cf70585b53
parente1cacea86e7ca11b2762bff286246f967452e6d5 (diff)
downloadcython-d98998a26b3ea1d520564f928d7a1f1fc6986415.tar.gz
Fix typo
-rw-r--r--docs/src/userguide/debugging.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/userguide/debugging.rst b/docs/src/userguide/debugging.rst
index 5dcefe285..10798fe52 100644
--- a/docs/src/userguide/debugging.rst
+++ b/docs/src/userguide/debugging.rst
@@ -18,7 +18,7 @@ The debugger will need debug information that the Cython compiler can export.
This can be achieved from within the setup
script by passing ``gdb_debug=True`` to ``cythonize()``::
- from distutils.code import setup
+ from distutils.core import setup
from distutils.extension import Extension
extensions = [Extension('source', ['source.pyx'])]