Skip to content

Update RunDictFuncs.py fixing itertools.zip_longest for python 2 and python 3

Alex Seuthe requested to merge alseuthe-master-patch-47528 into master

This updates the PIDCalib script RunDictFuncs.py. Making itertools.zip_longest usable in both python2 and python3 using

from future.moves.itertools import filterfalse, zip_longest

following the instructions from: https://python-future.org/compatible_idioms.html

Merge request reports