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
Kirill Smelkov
cython
Commits
2f76bba5
Commit
2f76bba5
authored
Feb 15, 2019
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some ReST errors and missing/duplicate references in docs.
parent
b67e5567
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
3 deletions
+11
-3
CHANGES.rst
CHANGES.rst
+1
-1
docs/src/quickstart/build.rst
docs/src/quickstart/build.rst
+2
-1
docs/src/tutorial/related_work.rst
docs/src/tutorial/related_work.rst
+2
-1
docs/src/userguide/extension_types.rst
docs/src/userguide/extension_types.rst
+1
-0
docs/src/userguide/memoryviews.rst
docs/src/userguide/memoryviews.rst
+5
-0
No files found.
CHANGES.rst
View file @
2f76bba5
...
...
@@ -1272,7 +1272,7 @@ Bugs fixed
*
Compile
errors
and
warnings
in
integer
type
conversion
code
.
This
fixes
ticket
877.
Patches
by
Christian
Neukirchen
,
Nikolaus
Rath
,
Ian
Henriksen
.
*
Reference
leak
when
"*args"
argument
was
reassigned
in
closures
.
*
Reference
leak
when
``*
args
``
argument
was
reassigned
in
closures
.
*
Truth
-
testing
Unicode
strings
could
waste
time
and
memory
in
Py3
.3
+.
...
...
docs/src/quickstart/build.rst
View file @
2f76bba5
...
...
@@ -105,4 +105,5 @@ Using the Sage notebook
.. [Jupyter] https://jupyter.org/
.. [Sage] W. Stein et al., Sage Mathematics Software, https://www.sagemath.org/
..
[Sage] W. Stein et al., Sage Mathematics Software, https://www.sagemath.org/
docs/src/tutorial/related_work.rst
View file @
2f76bba5
...
...
@@ -41,7 +41,8 @@ Python modules.
.. [ctypes] https://docs.python.org/library/ctypes.html.
.. there's also the original ctypes home page: http://python.net/crew/theller/ctypes/
.. [Pyrex] G. Ewing, Pyrex: C-Extensions for Python,
..
[Pyrex] G. Ewing, Pyrex: C-Extensions for Python,
https://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/
.. [ShedSkin] M. Dufour, J. Coughlan, ShedSkin,
https://github.com/shedskin/shedskin
...
...
docs/src/userguide/extension_types.rst
View file @
2f76bba5
...
...
@@ -850,6 +850,7 @@ use the C-API equivalent of::
instead of the desired C equivalent of ``return f->f0 + f->f1 + f->f2``. We can
alias the fields by using::
cdef extern from "foo_nominal.h":
ctypedef class foo_extension.Foo [object FooStructNominal]:
...
...
docs/src/userguide/memoryviews.rst
View file @
2f76bba5
...
...
@@ -20,6 +20,9 @@ A memoryview can be used in any context (function parameters, module-level, cdef
class attribute, etc) and can be obtained from nearly any object that
exposes writable buffer through the `PEP 3118`_ buffer interface.
.. _`PEP 3118`: https://www.python.org/dev/peps/pep-3118/
.. _view_quickstart:
Quickstart
...
...
@@ -226,6 +229,8 @@ NumPy arrays support this interface, as do :ref:`view_cython_arrays`. The
data array to themselves be pointers; Cython memoryviews do not yet support
this.
.. _`new style buffers`: https://docs.python.org/3/c-api/buffer.html
.. _view_memory_layout:
Memory layout
...
...
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