diff options
author | nima <nima@abc39116-655e-4be6-ad55-d661dc543056> | 2009-03-31 11:42:38 +0000 |
---|---|---|
committer | nima <nima@abc39116-655e-4be6-ad55-d661dc543056> | 2009-03-31 11:42:38 +0000 |
commit | d7200d96d5b90bcd0013c84ec1b053acbcca86c9 (patch) | |
tree | 76b63b8b927bdbb544fa2de66747baa5cd3da058 /trunk/examples/dmidump.py | |
parent | 37d1a8117cd212ee9e47bbd4225ba76dece7dad7 (diff) | |
download | python-dmidecode-d7200d96d5b90bcd0013c84ec1b053acbcca86c9.tar.gz python-dmidecode-d7200d96d5b90bcd0013c84ec1b053acbcca86c9.tar.xz python-dmidecode-d7200d96d5b90bcd0013c84ec1b053acbcca86c9.zip |
Reverting recent (pointless) change.
git-svn-id: svn://svn.autonomy.net.au/python-dmidecode@180 abc39116-655e-4be6-ad55-d661dc543056
Diffstat (limited to 'trunk/examples/dmidump.py')
-rwxr-xr-x | trunk/examples/dmidump.py | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/trunk/examples/dmidump.py b/trunk/examples/dmidump.py deleted file mode 100755 index 161da44..0000000 --- a/trunk/examples/dmidump.py +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env python2.4 -import dmidecode -import sys -from pprint import pprint - -#. Test reading the dump... -print "*** bios ***\n"; pprint(dmidecode.bios()) -print "*** system ***\n"; pprint(dmidecode.system()) -print "*** system ***\n"; pprint(dmidecode.system()) -print "*** baseboard ***\n"; pprint(dmidecode.baseboard()) -print "*** chassis ***\n"; pprint(dmidecode.chassis()) -print "*** processor ***\n"; pprint(dmidecode.processor()) -print "*** memory ***\n"; pprint(dmidecode.memory()) -print "*** cache ***\n"; pprint(dmidecode.cache()) -print "*** connector ***\n"; pprint(dmidecode.connector()) -print "*** slot ***\n"; pprint(dmidecode.slot()) - -_=[dmidecode.type(_) and pprint(dmidecode.type(_)) for _ in range(1,128)] |