Code:
day, month, year = (int(x) for x in dt.split('/'))
I can see many cases where this would be a useful time saver.
the regexutil class already has a function to listify all regexes in a string
but having a split of variables is an easier read.
Code:
day, month, year = (int(x) for x in dt.split('/'))