The R Project SVN R

Rev

Rev 64517 | Rev 73760 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 64517 Rev 64816
Line 28... Line 28...
28
c(unclass(z))
28
c(unclass(z))
29
 
29
 
30
## PR15613: had day as > 24hrs.
30
## PR15613: had day as > 24hrs.
31
as.POSIXlt(ISOdate(2071,1,13,0,0,tz="Etc/GMT-1"))$wday
31
as.POSIXlt(ISOdate(2071,1,13,0,0,tz="Etc/GMT-1"))$wday
32
as.POSIXlt(ISOdate(2071,1,13,0,1,tz="Etc/GMT-1"))$wday
32
as.POSIXlt(ISOdate(2071,1,13,0,1,tz="Etc/GMT-1"))$wday
-
 
33
 
-
 
34
 
-
 
35
## Incorrect use of %d should work even though abbreviation does match
-
 
36
old <- Sys.setlocale("LC_TIME", "C") # to be sure
-
 
37
stopifnot(!is.na(strptime("11-August-1903", "%d-%b-%Y")))