TGTGInsighttelegram intelligenceLIVE / telegram public index
← IT news | Tg Bots

TGINSIGHT SIMILAR POSTS

유사한 콘텐츠 찾기

소스 채널 @phpdevelopersuz · Post #2198 · 12월 31일

Bot API был обновлён до версии 5.6 Что нового: — Улучшена поддержка функций защищенного содержимого. — В методы добавлен параметр protect_content: sendMessage, sendPhoto, sendVideo, sendAnimation, sendAudio, sendDocument, sendSticker, sendVideoNote, sendVoice, sendLocation, sendVenue, sendContact, sendPoll, sendDice, sendInvoice, sendGame, sendMediaGroup, copyMessage, forwardMessage. — Добавлена поддержка «спойлеров», которые будут работать в версиях Telegram, выпущенных после 30 декабря 2021 года. Более старые клиенты будут отображать неподдерживаемое сообщение. — Добавлен новый тип MessageEntity "spoiler". — Добавлена возможность указывать объекты спойлера, используя параметры форматирования HTML и MarkdownV2. Полный список изменений на официальном сайте. #обновление#BotAPI @phpdevelopersuz | Obuna bo'ling

결과

2개의 유사한 게시물이 발견되었습니다

검색: #interpreter

当前筛选 #interpreter清除筛选
djangoproject

@djangoproject · Post #156 · 2016. 09. 06. AM 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.)

djangoproject

@djangoproject · Post #159 · 2016. 09. 12. PM 05:37

https://docs.python.org/3/library/atexit.html The #atexit module defines #functions to #register and #unregister cleanup functions. Functions thus registered are automatically executed upon normal interpreter termination. atexit runs these functions in the reverse order in which they were registered; if you register A, B, and C, at #interpreter#termination time they will be run in the order C, B, A.