comparison doc/utils.rst @ 310:e95e5572cd6d

Added utils doc page
author Windel Bouwman
date Fri, 13 Dec 2013 14:10:10 +0100
parents
children 8d07a4254f04
comparison
equal deleted inserted replaced
309:68b01c8abf8a 310:e95e5572cd6d
1
2 Utilities
3 =========
4
5 Hexfile manipulation
6 --------------------
7
8
9 .. autoclass:: utils.HexFile
10
11
12 >>> from utils import HexFile
13 >>> h = HexFile()
14 >>> h.dump()
15 Hexfile containing 0 bytes
16 >>> h.addRegion(0, bytes([1,2,3]))
17 >>> h
18 Hexfile containing 3 bytes
19
20