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
27b459a1
Commit
27b459a1
authored
Sep 27, 2010
by
Lisandro Dalcin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update special methods for buffer interface (PEP 3118 and legacy)
parent
5e4b168e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
7 deletions
+18
-7
src/userguide/special_methods.rst
src/userguide/special_methods.rst
+18
-7
No files found.
src/userguide/special_methods.rst
View file @
27b459a1
...
...
@@ -322,19 +322,30 @@ Iterators
| __next__ | self | object | Get next item (called next in Python) |
+-----------------------+---------------------------------------+-------------+-----------------------------------------------------+
Buffer interface (no Python equivalents - see note 1)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Buffer interface
[PEP 3118]
(no Python equivalents - see note 1)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^
+-----------------------+---------------------------------------+-------------+-----------------------------------------------------+
| Name | Parameters | Return type | Description |
| Name | Parameters | Return type | Description |
+=======================+=======================================+=============+=====================================================+
| __getbuffer__ | self, Py_buffer `*view`, int flags | | |
+-----------------------+---------------------------------------+-------------+-----------------------------------------------------+
| __releasebuffer__ | self, Py_buffer `*view` | | |
+-----------------------+---------------------------------------+-------------+-----------------------------------------------------+
Buffer interface [legacy] (no Python equivalents - see note 1)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+-----------------------+---------------------------------------+-------------+-----------------------------------------------------+
| Name | Parameters | Return type | Description |
+=======================+=======================================+=============+=====================================================+
| __getreadbuffer__
| self, int i, void `**p` | |
|
| __getreadbuffer__
| self, Py_ssize_t i, void `**p` | |
|
+-----------------------+---------------------------------------+-------------+-----------------------------------------------------+
| __getwritebuffer__
| self, int i, void `**p` | |
|
| __getwritebuffer__
| self, Py_ssize_t i, void `**p` | |
|
+-----------------------+---------------------------------------+-------------+-----------------------------------------------------+
| __getsegcount__
| self, int `*p`
| | |
| __getsegcount__
| self, Py_ssize_t `*p`
| | |
+-----------------------+---------------------------------------+-------------+-----------------------------------------------------+
| __getcharbuffer__
| self, int i, char `**p` | |
|
| __getcharbuffer__
| self, Py_ssize_t i, char `**p` | |
|
+-----------------------+---------------------------------------+-------------+-----------------------------------------------------+
Descriptor objects (see note 2)
...
...
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