PyCoder 511
简单将GraphQL接口添加到DRF应用程序 原文: PyCoder’s Weekly - Issue #511 220209 Zoom.Quiet(大妈) 用时 13 分钟 完成快译 220209 Zoom.Quiet(大妈) 用时 37 分钟 完成格式转抄. 用可选参数定义Python函数 REAL PYTHON COURSE Learn about Python optional arguments and how to define functions with default values. You’ll also see how to create functions that accept any number of arguments using *args and **kwargs. (是也乎: 其实, 默认值本身也是一种漏洞… ) typing.Protocol 支持不同 Python版本 HYNEK SCHLAWACK How to seamlessly support typing.Protocol on Python versions older and newer than 3.8. At the same time. (是也乎: import sys if sys.version_info >= (3, 10): from typing import ParamSpec else: from typing_extensions import ParamSpec 这类补丁何时是个头? ) 更好的Pygame主循环 GLYPH LEFKOWITZ Improving your game’s main loop for smoother gameplay that takes less battery power: “Now your players’ laptops run cool while playing, and the graphics don’t have ugly tearing artifacts any more!” (是也乎: ) GitHub 语言和其它开发事务调查 GITHUB.COM • Shared by Ian Currie JavaScript retains the top spot, Python keeps 2nd place gained in 2019 over Java, which holds in 3rd. Typescript continues 4th after racing up from 2017 from 10th to 4th in 2020. JavaScript + TypeScript seem to put that way ahead in terms of amount of code on GitHub. (是也乎: top5 里有三个都是 微软 一家的… 猜中国有多少? ) Python 新闻/2022年1月新增了什么?? REAL PYTHON In January 2022, Black came out of Beta, IPython 8.0 was released, PEP 665 was rejected, and last but not least, a fifteen-year-old bug was fixed. In this article, you’ll get the details on these important happenings in the world of Python. (是也乎: ) Python in Visual Studio Code – February 2022 发布 MICROSOFT.COM This release includes: smart selection, folding support, improvements to the Python interpreters list, improvements when using Anaconda. (是也乎: 反正, 俺是关闭的 ) CPython 3.11.0a5 可用 CPYTHON DEV BLOG “We needed to tame some angry buildbots, but after a small fight, we won with just some scratches! Here you have a shiny new alpha release: Python 3.11.0a5.” 探讨/吐糟 Discussions ...