Miscellaneous python 3 syntax fixes for ComponentAccumulator-based configuration.
- Removed usage of JobProperties in new-style simulation configuration.
- Updated a few more
ComponentAccumulator
configuration tests which dump the configuration to a pickle file. In python 3 the output file needs to be explicitly opened in binary mode. I.e.
f = open('configdump.pkl', 'wb')
rather than
f = open('configdump.pkl', 'w')
Edited by John Derek Chapman