diff options
author | nima <nima@abc39116-655e-4be6-ad55-d661dc543056> | 2008-10-29 07:15:35 +0000 |
---|---|---|
committer | nima <nima@abc39116-655e-4be6-ad55-d661dc543056> | 2008-10-29 07:15:35 +0000 |
commit | 90f1ca30ef2d9ce324fc198ea7c3a128410d085a (patch) | |
tree | 5c85256cb5ba1bc35e1e0937dcb1cf88adc88c59 /example.py | |
parent | 6c0e97f2159991f0de26f79d49fed4a4d3caa326 (diff) | |
download | python-dmidecode-90f1ca30ef2d9ce324fc198ea7c3a128410d085a.tar.gz python-dmidecode-90f1ca30ef2d9ce324fc198ea7c3a128410d085a.tar.xz python-dmidecode-90f1ca30ef2d9ce324fc198ea7c3a128410d085a.zip |
Cleanup.
git-svn-id: svn://svn.autonomy.net.au/python-dmidecode@85 abc39116-655e-4be6-ad55-d661dc543056
Diffstat (limited to 'example.py')
-rwxr-xr-x | example.py | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -14,10 +14,7 @@ print "*** slot ***\n"; pprint(dmidecode.slot()) for v in dmidecode.memory().values(): if type(v) == dict and v['dmi_type'] == 17: - print v['data']['Size'], -print "" + pprint(v['data']['Size']), -import time -print dmidecode.type('3') -time.sleep(1) -print dmidecode.type('bios') +pprint(dmidecode.type('3')) +pprint(dmidecode.type('bios')) |