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
from __future__ import absolute_import
object
import
logger.info('something bad happened: %r', exc)
sorted(PagesToTranslate, self.sort_result)
key=self.sort_result
The text was updated successfully, but these errors were encountered:
No branches or pull requests
from __future__ import absolute_import
)来避免包名冲突object
来使用 new-style classimport
语句使用空行分组sorted(PagesToTranslate, self.sort_result)
使用key=self.sort_result
来明确参数的用途(这种写法在 Python 3 中已经不允许)The text was updated successfully, but these errors were encountered: