@H2HOLE · Post #161 · 27.05.2024 г., 16:25
Python 3.13 起已可使用 --disable-gil 关闭 GIL。 https://docs.python.org/3.13/whatsnew/3.13.html#free-threaded-cpython thread: /4469 #Python#GIL
TGINSIGHT SIMILAR POSTS
Изворен канал @pythonotes · Post #160 · 7 окт.
А вы ждёте Qt6 как жду его я? ))) Наверняка, те кто ждёт, уже в курсе, но я уточню даты релизов. - Qt 6.0 Feature freeze - 31.8.2020 - Qt 6.0 Alpha - 2.10.2020 - Qt 6.0 Beta 1 - 15.10.2020 - Qt 6.0.0 RC - 17.11.2020 - Qt 6.0.0 Final - 1.12.2020 Полный список https://wiki.qt.io/Qt_6.0_Release Между тем, библиотеки PySide3 ждать не стоит. Дело в том, что разработчики решили синхронизировать версии библиотек C++ и Qt for Python. Так что ждём сразу PySide6! #qt
Hashtags
Пребарај: #gil
@H2HOLE · Post #161 · 27.05.2024 г., 16:25
Python 3.13 起已可使用 --disable-gil 关闭 GIL。 https://docs.python.org/3.13/whatsnew/3.13.html#free-threaded-cpython thread: /4469 #Python#GIL
@djangoproject · Post #156 · 06.09.2016 г., 01:43
https://wiki.python.org/moin/GlobalInterpreterLock In #CPython, the #global#interpreter lock, or #GIL, is a mutex that prevents multiple native #threads from executing Python bytecodes at once. This lock is necessary mainly because CPython's memory management is not thread-safe. (However, since the GIL exists, other features have grown to depend on the guarantees that it enforces.)