* Fixes 14 where a file executed (unexpectedly) during installation was not python 3 compatible.
v0.7.0, 2015-01-04, No 1.0, instead a bunch of new stuff and one API breaking change to PMap.remove().
* Evolvers for pvector, pmap and pset to allow simple and efficient updates of multiple elements
in the collection. See the documentation for a closer description.
* New method mset on pvector to update multiple values in one operation
* Remove deprecated methods merge and merge_with on PMap
* Change behavior of PMap.remove, it will now raise a KeyError if the element is not present.
New method PMap.discard will instead return the original pmap if the element is not present.
This aligns the PMap with how things are done in the PSet and is closer to the behavior of the
built in counterparts.