diff options
| author | Guido van Rossum <guido@python.org> | 2006-04-22 23:28:04 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 2006-04-22 23:28:04 +0000 |
| commit | e054009afcde82053736982bb16d146202af7214 (patch) | |
| tree | 25b80079cbb652d2010f1bb9fbe80b7ccd9c530a /Python/bltinmodule.c | |
| parent | 658a11b40235796d91ed145d508ceea9e765c695 (diff) | |
| download | cpython-e054009afcde82053736982bb16d146202af7214.tar.gz | |
Here is a bytes type. It's very minimal but it's a start.
Diffstat (limited to 'Python/bltinmodule.c')
| -rw-r--r-- | Python/bltinmodule.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 914e0d1761..54e8fe832d 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -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); |
