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
6437de44
Commit
6437de44
authored
Aug 23, 2018
by
Dr Alex Meakins
Committed by
GitHub
Aug 23, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a typo and added a little bit of detail.
parent
71f29c9e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
docs/src/userguide/language_basics.rst
docs/src/userguide/language_basics.rst
+3
-3
No files found.
docs/src/userguide/language_basics.rst
View file @
6437de44
...
...
@@ -148,13 +148,13 @@ typing and instead interpreted as C ``int``, ``long``, and ``float``
respectively, as statically typing variables with these Python
types has zero advantages.
Cython provides an accelerated and typed equivalent of a Python tuple.
Cython provides an accelerated and typed equivalent of a Python tuple
, the ``ctuple``
.
A ``ctuple`` is assembled from any valid C types. For example::
cdef (double, int) bar
They c
an be used efficient alternatives to Python tuples, including in
function definition
s.
They c
ompile down to C-structures and can be used as efficient alternatives to
Python tuple
s.
While these C types can be vastly faster, they have C semantics.
Specifically, the integer types overflow
...
...
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