Identifiant
Mot de passe
Loading...
Mot de passe oublié ?
Je m'inscris ! (gratuit)
Forums
Tutoriels
FAQ
Blogs
Chat
Newsletter
Emploi
Études
Droit
Club
DI/DSI Solutions d'entreprise
DI/DSI Solutions d'entreprise
Big Data
BPM
Business Intelligence
Data Science
ERP / PGI
CRM
SAS
SAP
Sécurité
Droit informatique et entreprise
OnlyOffice
Cloud
Cloud Computing
Oracle
Azure
IBM Cloud
IA
Intelligence artificielle
ALM
ALM
Agile
Merise
UML
Microsoft
Microsoft
.NET
Microsoft Office
Visual Studio
Windows
ASP.NET
TypeScript
C#
VB.NET
Azure
Java
Java
Java Web
Spring
Android
Eclipse
NetBeans
Dév. Web
Développement et hébergement Web
AJAX
Apache
ASP
CSS
Dart
Flash / Flex
JavaScript
NodeJS
PHP
Ruby & Rails
TypeScript
Web sémantique
Webmarketing
(X)HTML
EDI
EDI
4D
Delphi
Eclipse
JetBrains
LabVIEW
NetBeans
MATLAB
Scilab
Visual Studio
WinDev
Visual Basic 6
Lazarus
Qt Creator
Programmation
Programmation
Débuter - Algorithmique
2D - 3D - Jeux
Assembleur
C
C++
C#
D
Go
Kotlin
Objective C
Pascal
Perl
Python
Rust
Swift
Qt
XML
Autres
SGBD
SGBD & SQL
4D
Access
Big Data
Data Science
DB2
Firebird
InterBase
MySQL
NoSQL
PostgreSQL
Oracle
Sybase
SQL-Server
MongoDB
Office
Microsoft Office
Access
Excel
Word
Outlook
PowerPoint
SharePoint
Microsoft Project
OpenOffice & LibreOffice
OnlyOffice
Mobiles
Mobiles
Android
iOS
Systèmes
Systèmes
Windows
Linux
Arduino
Hardware
HPC
Mac
Raspberry Pi
Réseau
Green IT
Sécurité
Systèmes embarqués
Virtualisation
Programmation
Algorithmique
2D-3D-Jeux
Assembleur
C
C++
C#
D
Go
Kotlin
Objective C
Pascal
Perl
Python
Rust
Swift
Qt
XML
Autres
FORUM PYTHON
F.A.Q PYTHON
EXERCICES PYTHON
TUTORIELS PYTHON
SOURCES PYTHON
OUTILS PYTHON
LIVRES PYTHON
PyQt
Byte Array Objects — Python v2.6.2 documentation
Navigation
index
modules
|
next
|
previous
|
Python v2.6.2 documentation
»
Python/C API Reference Manual
»
Concrete Objects Layer
»
Byte Array Objects
¶
New in version 2.6.
PyByteArrayObject
¶
This subtype of
PyObject
represents a Python bytearray object.
PyTypeObject
PyByteArray_Type
¶
This instance of
PyTypeObject
represents the Python bytearray type; it is the same object as
bytearray
in the Python layer.
int
PyByteArray_Check
(
PyObject
*o
)
¶
Return true if the object
o
is a bytearray object or an instance of a subtype of the bytearray type.
int
PyByteArray_CheckExact
(
PyObject
*o
)
¶
Return true if the object
o
is a bytearray object, but not an instance of a subtype of the bytearray type.
PyObject
*
PyByteArray_FromObject
(
PyObject
*o
)
¶
Return a new bytearray object from any object,
o
, that implements the buffer protocol.
PyObject
*
PyByteArray_FromStringAndSize
(
const char
*string
, Py_ssize_t
len
)
¶
Create a new bytearray object from
string
and its length,
len
. On failure,
NULL
is returned.
Py_ssize_t
PyByteArray_Size
(
PyObject
*bytearray
)
¶
Return the size of
bytearray
after checking for a
NULL
pointer.
Py_ssize_t
PyByteArray_GET_SIZE
(
PyObject
*bytearray
)
¶
Macro version of
PyByteArray_Size
that doesn’t do pointer checking.
char*
PyByteArray_AsString
(
PyObject
*bytearray
)
¶
Return the contents of
bytearray
as a char array after checking for a
NULL
pointer.
char*
PyByteArray_AS_STRING
(
PyObject
*bytearray
)
¶
Macro version of
PyByteArray_AsString
that doesn’t check pointers.
PyObject
*
PyByteArray_Concat
(
PyObject
*a
,
PyObject
*b
)
¶
Concat bytearrays
a
and
b
and return a new bytearray with the result.
PyObject
*
PyByteArray_Resize
(
PyObject
*bytearray
, Py_ssize_t
len
)
¶
Resize the internal buffer of
bytearray
to
len
.
Navigation
index
modules
|
next
|
previous
|
Python v2.6.2 documentation
»
Python/C API Reference Manual
»
Concrete Objects Layer
»