-
Notifications
You must be signed in to change notification settings - Fork 53
Open
Labels
Description
datetime-fortran currently provides no timezone information in the datetime class definition. I believe timezone handling should be implemented as an optional derived type which is a component of datetime:
TYPE :: datetime
...
TYPE :: tz
! tz components
ENDTYPE tz
ENDTYPE datetimeA possible timezone model may the one from Python: http://docs.python.org/2/library/datetime.html#tzinfo-objects
Reactions are currently unavailable