Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/guidelines/advanced/logging.md
Original file line number Diff line number Diff line change
Expand Up @@ -269,4 +269,4 @@ def init_yml_log() -> None:
应该延迟加载。这么做是为了减少在计算日志参数时所消耗的资源,因为如果日志记录非丢弃,则不需要消耗这部分资源。所以在
日志记录上,应采用 `%` 的方式,而不是其他字符串格式化。

关于性能的讨论可以参考 [W1202 - logging-fstring-interpolation is not useful](https://github.com/PyCQA/pylint/issues/2395) 。
关于性能的讨论可以参考 [W1202 - logging-fstring-interpolation is not useful](https://github.com/pylint-dev/pylint/issues/2395) 。
2 changes: 1 addition & 1 deletion docs/guidelines/project_management/distribution.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ flit build --format wheel

缺点:

- [不支持 CPython 编译](https://github.com/Vlek/roll/issues/29)
- [扩展模块构建功能仍处于不稳定状态](https://python-poetry.org/docs/building-extension-modules/)
- 不支持 zip 压缩选项

##### 2.1.3.1 示例配置
Expand Down