Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
7c0aa4af
Commit
7c0aa4af
authored
Oct 08, 2012
by
scoder
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #151 from joonro/patch-1
Fixed a couple of typos in setup script
parents
97881828
7fd0fc93
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
docs/src/userguide/debugging.rst
docs/src/userguide/debugging.rst
+2
-2
No files found.
docs/src/userguide/debugging.rst
View file @
7c0aa4af
...
...
@@ -20,8 +20,8 @@ script by passing ``pyrex_gdb=True`` to your Cython Extenion class::
from
Cython
.
Distutils
import
extension
ext
=
extension
.
Extension
(
'source'
,
'source.pyx'
,
pyrex_gdb
=
True
)
setup
(...,
ext_modules
=[
ext
)]
ext
=
extension
.
Extension
(
'source'
,
[
'source.pyx'
]
,
pyrex_gdb
=
True
)
setup
(...,
ext_modules
=[
ext
])
With
this
approach
debug
information
can
be
enabled
on
a
per
-
module
basis
.
Another
(
easier
)
way
is
to
simply
pass
the
``--
pyrex
-
gdb
``
flag
as
a
command
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment