I'm trying to add a timestamp in my code using the TrialHandler.addData() methode. However, the precision of the underlying array makes it impossible to get the exact value I need.
print(core.getAbsTime())
hand.addData('time', core.getAbsTime())
print(hand.data['time'])
#prints 1410454966
# [[1410454912.0] ...
Is there a way to change the underlying type to be able to acheive the needed precision?