ihmily / DouyinLiveRecorder

可循环值守和多人录制的直播录制软件,支持抖音、TikTok、快手、虎牙、斗鱼、B站、小红书、pandatv、afreecatv、flextv、popkontv、twitcasting、winktv、百度、微博、酷狗、花椒、Twitch、Acfun、CHZZK等平台直播录制
MIT License
4.55k stars 537 forks source link

with 语句语法问题 #683

Closed seal7 closed 1 hour ago

seal7 commented 1 hour ago

⚠️ 搜索是否存在类似issue

📜 功能描述

在main.py 1418行中

1416    try:
1417        url_comments = []
1418        with (open(url_config_file, "r", encoding=text_encoding, errors='ignore') as file):

这里with后面的括号是什么新写法吗?我使用python3.6启动项目会报语法错误,把括号去掉就正常了

🌐 举例(可选)

No response

💡 动机

No response

📚 附加信息

No response

Issues-translate-bot commented 1 hour ago

Bot detected the issue body's language is not English, translate it automatically.


Title: with statement syntax problem

ihmily commented 1 hour ago

@seal7

这种写法是在python 3.10支持的

参考更新日志: https://docs.python.org/zh-cn/3.11/whatsnew/3.10.html https://github.com/python/cpython/issues/56991

在python 3.6你可以将括号去掉,但还是推荐在3.10版本以上运行本项目

seal7 commented 1 hour ago

学习了 感谢回复

Issues-translate-bot commented 1 hour ago

Bot detected the issue body's language is not English, translate it automatically.


Learned. Thanks for the reply.