[ctypes-commit] ctypes/ctypes/test test_byteswap.py,1.1.2.2.2.4,1.1.2.2.2.5
Brought to you by:
theller
From: Thomas H. <th...@us...> - 2005-11-18 14:27:15
|
Update of /cvsroot/ctypes/ctypes/ctypes/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16801 Modified Files: Tag: endian_branch test_byteswap.py Log Message: Another check. Index: test_byteswap.py =================================================================== RCS file: /cvsroot/ctypes/ctypes/ctypes/test/Attic/test_byteswap.py,v retrieving revision 1.1.2.2.2.4 retrieving revision 1.1.2.2.2.5 diff -C2 -d -r1.1.2.2.2.4 -r1.1.2.2.2.5 *** test_byteswap.py 18 Nov 2005 14:20:00 -0000 1.1.2.2.2.4 --- test_byteswap.py 18 Nov 2005 14:27:05 -0000 1.1.2.2.2.5 *************** *** 33,36 **** --- 33,39 ---- n = Nibbles(1, 2, 3, 4, 5, 6, 7, 8) + for name, typ, bits in Nibbles._fields_: + print name, getattr(Nibbles, name) + print "sys.byteorder:", sys.byteorder dump(n) |