-------------------
Good feedback from Keith Briggs, some advice from Tim Peters and Fred Lundh ---
thanks all!
* fixed bug of '"%d" where "%ld" was meant' in many places
and other sundry minor warnings given by gcc
* fixed hash (delegating to Python) so mp[nqz](x) will
produce the same value as hash(x) for any Python number x
* workaround for GMP 3.1.1 bug, mpz_root wrongly returning
'exact' for non-exact root if dest==source, which stopped
needed value-error for inexact mpq**mpq operations
* determined correct 'actual precision' of floats
* explicitly stored precision with binary-form mpf's
* extended explicit-bits request to all ->mpf operations
(good in itself, plus, preparing for future MPFR)
* removed the limitation of no binary-form for <0 mpz
* introduced macros to parse args, for conciseness