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
aa949a3b
Commit
aa949a3b
authored
Jan 10, 2018
by
Takuro Ashie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos in docs
parent
5b6497c8
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
docs/src/reference/extension_types.rst
docs/src/reference/extension_types.rst
+1
-1
docs/src/tutorial/cdef_classes.rst
docs/src/tutorial/cdef_classes.rst
+1
-1
No files found.
docs/src/reference/extension_types.rst
View file @
aa949a3b
...
@@ -306,7 +306,7 @@ Depending on the application, one way or the other may be better:
...
@@ -306,7 +306,7 @@ Depending on the application, one way or the other may be better:
+-----+-----+-------+
+-----+-----+-------+
The named constants can be cimported from the ``cpython.object`` module.
The named constants can be cimported from the ``cpython.object`` module.
They should generally be preferred over plain integers to improve readabilty.
They should generally be preferred over plain integers to improve readabil
i
ty.
The ``__next__()`` Method
The ``__next__()`` Method
...
...
docs/src/tutorial/cdef_classes.rst
View file @
aa949a3b
...
@@ -47,7 +47,7 @@ fast for use from Cython and one slower for use from Python. Then::
...
@@ -47,7 +47,7 @@ fast for use from Cython and one slower for use from Python. Then::
return sin(x**2)
return sin(x**2)
This does slightly more than providing a python wrapper for a cdef
This does slightly more than providing a python wrapper for a cdef
method: unlike a cdef method, a cpdef method is fully overrid
e
able by
method: unlike a cdef method, a cpdef method is fully overridable by
methods and instance attributes in Python subclasses. It adds a
methods and instance attributes in Python subclasses. It adds a
little calling overhead compared to a cdef method.
little calling overhead compared to a cdef method.
...
...
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