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
ebc9b746
Commit
ebc9b746
authored
Feb 09, 2019
by
Stefan Behnel
Committed by
GitHub
Feb 09, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2832 from luzpaz/misc-typos
Misc. typo fixes
parents
c2be000c
7ee11ce7
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
Cython/Compiler/ExprNodes.py
Cython/Compiler/ExprNodes.py
+1
-1
docs/src/tutorial/readings.rst
docs/src/tutorial/readings.rst
+1
-1
docs/src/userguide/extension_types.rst
docs/src/userguide/extension_types.rst
+1
-1
No files found.
Cython/Compiler/ExprNodes.py
View file @
ebc9b746
...
...
@@ -2110,7 +2110,7 @@ class NameNode(AtomicExprNode):
def
may_be_none
(
self
):
if
self
.
cf_state
and
self
.
type
and
(
self
.
type
.
is_pyobject
or
self
.
type
.
is_memoryviewslice
):
# gard against infinite recursion on self-dependencies
# g
u
ard against infinite recursion on self-dependencies
if
getattr
(
self
,
'_none_checking'
,
False
):
# self-dependency - either this node receives a None
# value from *another* node, or it can not reference
...
...
docs/src/tutorial/readings.rst
View file @
ebc9b746
...
...
@@ -16,7 +16,7 @@ features for managing it.
Finally, don't hesitate to ask questions (or post reports on
successes!) on the Cython users mailing list [UserList]_. The Cython
developer mailing list, [DevList]_, is also open to everybody, but
focus
s
es on core development issues. Feel free to use it to report a
focuses on core development issues. Feel free to use it to report a
clear bug, to ask for guidance if you have time to spare to develop
Cython, or if you have suggestions for future development.
...
...
docs/src/userguide/extension_types.rst
View file @
ebc9b746
...
...
@@ -504,7 +504,7 @@ It is quite common to want to instantiate an extension class from an existing
(pointer to a) data structure, often as returned by external C/C++ functions.
As extension classes can only accept Python objects as arguments in their
contructors, this necessitates the use of factory functions. For example, ::
con
s
tructors, this necessitates the use of factory functions. For example, ::
from libc.stdlib cimport malloc, free
...
...
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