diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2021-06-17 10:06:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-17 10:06:09 (GMT) |
commit | 00710e6346fd2394aa020b2dfae170093effac98 (patch) | |
tree | 8d75725f5d0774be997d3b8fedf08e262cf41b3f /Modules/_lzmamodule.c | |
parent | c544393b89f9b3e2b1a22588fc9ae58019314879 (diff) | |
download | cpython-00710e6346fd2394aa020b2dfae170093effac98.zip cpython-00710e6346fd2394aa020b2dfae170093effac98.tar.gz cpython-00710e6346fd2394aa020b2dfae170093effac98.tar.bz2 |
bpo-43908: Make heap types converted during 3.10 alpha immutable (GH-26351)
* Make functools types immutable
* Multibyte codec types are now immutable
* pyexpat.xmlparser is now immutable
* array.arrayiterator is now immutable
* _thread types are now immutable
* _csv types are now immutable
* _queue.SimpleQueue is now immutable
* mmap.mmap is now immutable
* unicodedata.UCD is now immutable
* sqlite3 types are now immutable
* _lsprof.Profiler is now immutable
* _overlapped.Overlapped is now immutable
* _operator types are now immutable
* winapi__overlapped.Overlapped is now immutable
* _lzma types are now immutable
* _bz2 types are now immutable
* _dbm.dbm and _gdbm.gdbm are now immutable
Diffstat (limited to 'Modules/_lzmamodule.c')
-rw-r--r-- | Modules/_lzmamodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_lzmamodule.c b/Modules/_lzmamodule.c index 2f80bf0..915c0c9 100644 --- a/Modules/_lzmamodule.c +++ b/Modules/_lzmamodule.c @@ -915,7 +915,7 @@ static PyType_Spec lzma_compressor_type_spec = { // lzma_compressor_type_spec does not have Py_TPFLAGS_BASETYPE flag // which prevents to create a subclass. // So calling PyType_GetModuleState() in this file is always safe. - .flags = Py_TPFLAGS_DEFAULT, + .flags = (Py_TPFLAGS_DEFAULT | Py_TPFLAGS_IMMUTABLETYPE), .slots = lzma_compressor_type_slots, }; @@ -1359,7 +1359,7 @@ static PyType_Spec lzma_decompressor_type_spec = { // lzma_decompressor_type_spec does not have Py_TPFLAGS_BASETYPE flag // which prevents to create a subclass. // So calling PyType_GetModuleState() in this file is always safe. - .flags = Py_TPFLAGS_DEFAULT, + .flags = (Py_TPFLAGS_DEFAULT | Py_TPFLAGS_IMMUTABLETYPE), .slots = lzma_decompressor_type_slots, }; |