Browse Source

py-smbus: fix module level docs

When you do pydoc smbus, you just get the high level description.
There is no automatic display of the classes (like SMBus). This is
due to the name not being specified quite right in the type.

Contributed by Mike Frysinger.


git-svn-id: http://lm-sensors.org/svn/i2c-tools/branches/i2c-tools-3.1@6232 7894878c-1315-0410-8ee3-d5d059ff63e0
tags/v3.1.1
Jean Delvare 12 years ago
parent
commit
e32987a243
  1. 1
      CHANGES
  2. 2
      py-smbus/smbusmodule.c

1
CHANGES

@ -17,6 +17,7 @@ SVN HEAD
i2cdetect: Clarify the SMBus commands used for probing by default
i2c-dev.h: Minimize differences with kernel flavor
i2c-stub-from-dump: Be more tolerant on input dump format
py-smbus: Fix module level docs
3.1.0 (2011-12-04)
decode-dimms: Decode module configuration type of DDR SDRAM

2
py-smbus/smbusmodule.c

@ -637,7 +637,7 @@ static PyGetSetDef SMBus_getset[] = {
static PyTypeObject SMBus_type = {
PyObject_HEAD_INIT(NULL)
0, /* ob_size */
"SMBus", /* tp_name */
"smbus.SMBus", /* tp_name */
sizeof(SMBus), /* tp_basicsize */
0, /* tp_itemsize */
(destructor)SMBus_dealloc, /* tp_dealloc */

Loading…
Cancel
Save