mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Here is a bytes type. It's very minimal but it's a start.
This commit is contained in:
parent
d603f645d9
commit
4dfe8a1131
7 changed files with 536 additions and 0 deletions
|
@ -2139,6 +2139,7 @@ _PyBuiltin_Init(void)
|
|||
SETBUILTIN("basestring", &PyBaseString_Type);
|
||||
SETBUILTIN("bool", &PyBool_Type);
|
||||
SETBUILTIN("buffer", &PyBuffer_Type);
|
||||
SETBUILTIN("bytes", &PyBytes_Type);
|
||||
SETBUILTIN("classmethod", &PyClassMethod_Type);
|
||||
#ifndef WITHOUT_COMPLEX
|
||||
SETBUILTIN("complex", &PyComplex_Type);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue