We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
建议提供 debug 选项控制类似下面这样的输出
print >> sys.stderr, f_name, ' at line', lineno, line
The text was updated successfully, but these errors were encountered:
@shuge , 什么样的控制?是控制让这些日志不显示,还是说输出到其他地方?
Sorry, something went wrong.
def foo(..., debug=False, log_file=sys.stderr): if debug: print >> log_file, f_name, ' at line', lineno, line ...
您觉得这样会不会更好些?
@shuge , 好的,谢谢你的建议。你要是能给我发pull request就更好了:-)
稍后吧,我上周临时用 pymmseg + AdvancdLangConv 解决了 jieba 是一个很有意思的项目
fxsjy
No branches or pull requests
建议提供 debug 选项控制类似下面这样的输出
The text was updated successfully, but these errors were encountered: