quinnj / Datetime.jl

A Date and DateTime implementation for Julia; Now deprecated in favor of https://github.com/quinnj/Dates.jl
Other
20 stars 15 forks source link

bug subtracting large number of months #53

Closed kasrllc closed 10 years ago

kasrllc commented 10 years ago

The following doesn't seem to work:

using Datetime date(2014,4,1) - months(17)

whereas the following does:

date(2014,4,1) - months(16)