summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Bradshaw <robertwb@gmail.com>2016-03-05 12:03:23 -0800
committerRobert Bradshaw <robertwb@gmail.com>2016-03-05 12:03:23 -0800
commitd9761347253f467cb53ee642bfea97221b28382b (patch)
tree5adf15b47f15a639f94f9f21cbc60d8f0ff5b07a
parentb5955fdf1024f268b0f52405274d90721000abde (diff)
parent6e65afb60047429fb352c00240ee83558b5666cf (diff)
downloadcython-d9761347253f467cb53ee642bfea97221b28382b.tar.gz
Merge pull request #497 from adityapb/master
DOCS: 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'])]