Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
4b017bba
Commit
4b017bba
authored
Sep 20, 2009
by
Ezio Melotti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#6881 - fixed wrong return type; improved the formatting
parent
14a2e2f6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
10 deletions
+19
-10
Doc/c-api/bytearray.rst
Doc/c-api/bytearray.rst
+19
-10
No files found.
Doc/c-api/bytearray.rst
View file @
4b017bba
...
...
@@ -20,6 +20,8 @@ Byte Array Objects
This instance of :ctype:`PyTypeObject` represents the Python bytearray type;
it is the same object as ``bytearray`` in the Python layer.
Type check macros
^^^^^^^^^^^^^^^^^
.. cfunction:: int PyByteArray_Check(PyObject *o)
...
...
@@ -33,6 +35,9 @@ Byte Array Objects
subtype of the bytearray type.
Direct API functions
^^^^^^^^^^^^^^^^^^^^
.. cfunction:: PyObject* PyByteArray_FromObject(PyObject *o)
Return a new bytearray object from any object, *o*, that implements the
...
...
@@ -47,14 +52,14 @@ Byte Array Objects
failure, *NULL* is returned.
.. cfunction:: Py
_ssize_t PyByteArray_Size(PyObject *bytearray
)
.. cfunction:: Py
Object* PyByteArray_Concat(PyObject *a, PyObject *b
)
Return the size of *bytearray* after checking for a *NULL* pointer
.
Concat bytearrays *a* and *b* and return a new bytearray with the result
.
.. cfunction:: Py_ssize_t PyByteArray_
GET_SIZE
(PyObject *bytearray)
.. cfunction:: Py_ssize_t PyByteArray_
Size
(PyObject *bytearray)
Macro version of :cfunc:`PyByteArray_Size` that doesn't do pointer checking
.
Return the size of *bytearray* after checking for a *NULL* pointer
.
.. cfunction:: char* PyByteArray_AsString(PyObject *bytearray)
...
...
@@ -63,16 +68,20 @@ Byte Array Objects
*NULL* pointer.
.. cfunction::
char* PyByteArray_AS_STRING(PyObject *bytearray
)
.. cfunction::
int PyByteArray_Resize(PyObject *bytearray, Py_ssize_t len
)
Macro version of :cfunc:`PyByteArray_AsString` that doesn't check pointers
.
Resize the internal buffer of *bytearray* to *len*
.
Macros
^^^^^^
.. cfunction:: PyObject* PyByteArray_Concat(PyObject *a, PyObject *b)
These macros trade safety for speed and they don't check pointers.
Concat bytearrays *a* and *b* and return a new bytearray with the result.
.. cfunction:: char* PyByteArray_AS_STRING(PyObject *bytearray)
Macro version of :cfunc:`PyByteArray_AsString`.
.. cfunction:: PyObject* PyByteArray_Resize(PyObject *bytearray, Py_ssize_t len)
Resize the internal buffer of *bytearray* to *len*.
.. cfunction:: Py_ssize_t PyByteArray_GET_SIZE(PyObject *bytearray)
Macro version of :cfunc:`PyByteArray_Size`.
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