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

TGINSIGHT SIMILAR POSTS

유사한 콘텐츠 찾기

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

Bot API was updated to version 6.4 Forums • Bots can now open, close, edit and toggle the visibility of the General Topic. • Added support for new service messages, like ForumTopicEdited, GeneralForumTopicHidden and more. • The method sendChatAction can now send actions to any thread or topic via the message_thread_id parameter. Spoilers • Added spoiler detection via the new has_media_spoiler field in the Message class. • Bots can send media covered by a spoiler animation via the has_spoiler field in sendPhoto, sendVideo and sendAnimation. Web Apps • Added a native QR scanner popup, controllable via showScanQrPopup and closeScanQrPopup. • Web Apps launched from the attachment menu can request clipboard text via readTextFromClipboard. • Added a platform field, showing which platform the web app is being used on. General • Added the is_persistent field, to keep ReplyKeyboards open by default. See the full changelog for details on the official website. #update#BotAPI https://t.me/+VMLgtEPNL49jZmNh

결과

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

검색: #namespace

当前筛选 #namespace清除筛选
djangoproject

@djangoproject · Post #550 · 2018. 01. 15. AM 07:05

http://www.wikipython.com/other-concepts/anatomy-of-a-class/ It seems obvious, but note that you must define a class before you use it. When you create a #class, it establishes its own namespace and all its own local variables (except global definitions) exist only inside that #namespace. They do not interact with other variables of the same name outside it. This leads us to one very important “feature” of classes that you need to know. If you use the same word to designate some specific value both inside and outside the class blueprint, the instance value will take precedence when you try to use that value. #learn