================================
* select method of open instance can now use functions to
filter keys based on conditional expressions. For example,
sel_grbs = grbs.select(shortName='gh',level=lambda l: l < 500 and l > 300)
returns geoptential height levels between 500 and 300.
* fix a couple of instances where PyString_AsString was used
incorrectly, replaced with PyString_FromString. Exposed by
cython 0.13 beta, but should have no user-visible effects.
* valid_key method added, tests to see if message has a key,
it's value is not missing and can be read. Now used in
gribmessage.__repr__, so it should never fail on a bad key.
* added new tpc tropical storm wind probability example.
* add more ensemble info, probability info to gribmessage.__repr__.
* gribmessage __repr__ provides more useful level information (including
units).