Actions
Bug #8376
closedutc method changes original time object
Bug #8376:
utc method changes original time object
Description
The utc method changes the original time object when called.
For example when on a system with a CET timezone.
t = Time.new(2013)
t.zone # CET
t.utc
t.zone # UTC
Actions