API cleanup for binarywave (loadibw->load, move checksum to util, ...).
authorW. Trevor King <wking@tremily.us>
Tue, 17 Jul 2012 11:49:06 +0000 (07:49 -0400)
committerW. Trevor King <wking@tremily.us>
Tue, 17 Jul 2012 11:49:06 +0000 (07:49 -0400)
commit4e9f269977ac7c8a690d1a03b521715876329811
treee260f61b8aba81183f39df113ecf9b93a7a25766
parentd4799633bbd12ee4e6669a50180dd4900b015a8c
API cleanup for binarywave (loadibw->load, move checksum to util, ...).

Also moved byte_order to the util module and renamed a few functions
internal to the binarywave module so they start with an underscore.

The loadibw -> load (and saveibw -> save) change is because

  from igor.binarywave import load

gives you enough of an idea about what you're importing.  If you want
to keep it explicit in your client module, use

  from igor.binarywave import load as loadibw

which we do in the test.py module.
igor/binarywave.py
igor/util.py
test/test.py