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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
cython
Commits
9a4a3dbd
Commit
9a4a3dbd
authored
Apr 13, 2012
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix comment in CythonFunction.c
parent
bfc53499
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
9 deletions
+5
-9
Cython/Utility/CythonFunction.c
Cython/Utility/CythonFunction.c
+5
-9
No files found.
Cython/Utility/CythonFunction.c
View file @
9a4a3dbd
...
...
@@ -172,15 +172,11 @@ __Pyx_CyFunction_set_dict(__pyx_CyFunctionObject *op, PyObject *value)
return
0
;
}
{{
#
"""
/*
TODO: we implicitly use the global module to get func_globals. This
will need to be passed into __Pyx_CyFunction_NewEx() if we share
this type across modules. We currently avoid doing this to reduce
the overhead of creating a function object, and to avoid keeping a
reference to the module dict as long as we don't need to.
*/
"""
}}
// TODO: we implicitly use the global module to get func_globals. This
// will need to be passed into __Pyx_CyFunction_NewEx() if we share
// this type across modules. We currently avoid doing this to reduce
// the overhead of creating a function object, and to avoid keeping a
// reference to the module dict as long as we don't need to.
static
PyObject
*
__Pyx_CyFunction_get_globals
(
CYTHON_UNUSED
__pyx_CyFunctionObject
*
op
)
...
...
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