help('dbhash')
(标准库模块):
CLASSES
exceptions.Exception(exceptions.BaseException)
bsddb.db.DBError
error = class DBError(exceptions.Exception)
| Method resolution order:
| DBError
| exceptions.Exception
| exceptions.BaseException
| __builtin__.object
:
这种error = class DBError(exceptions.Exception)
语言结构是如何命名的?它有什么作用?如果您安装了 django,则在执行 help('django.http.HttpResponse') 时可以看到此构造的另一个示例。
(我正在使用 python 2.7.2 和 django 1.4)