зеркало из https://github.com/github/ruby.git
* time.c (time_getlocaltime): [DOC] Add examples of valid utc_offset
formats. [ruby-core:68306] [Misc #10905] Patch by Charles Korn. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50892 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
9bcff8dbe9
Коммит
3093ffab83
|
@ -1,3 +1,9 @@
|
|||
Sun Jun 14 20:09:25 2015 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* time.c (time_getlocaltime): [DOC] Add examples of valid utc_offset
|
||||
formats.
|
||||
[ruby-core:68306] [Misc #10905] Patch by Charles Korn.
|
||||
|
||||
Sun Jun 14 18:49:56 2015 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* ext/socket/raddrinfo.c (parse_numeric_port): Detect
|
||||
|
|
6
time.c
6
time.c
|
@ -3581,6 +3581,8 @@ time_fixoff(VALUE time)
|
|||
* local time (using the local time zone in effect for this process).
|
||||
*
|
||||
* If +utc_offset+ is given, it is used instead of the local time.
|
||||
* +utc_offset+ can be given as a human-readable string (eg. <code>"+09:00"</code>)
|
||||
* or as a number of seconds (eg. <code>32400</code>).
|
||||
*
|
||||
* t = Time.utc(2000,1,1,20,15,1) #=> 2000-01-01 20:15:01 UTC
|
||||
* t.utc? #=> true
|
||||
|
@ -3592,6 +3594,10 @@ time_fixoff(VALUE time)
|
|||
* j = t.getlocal("+09:00") #=> 2000-01-02 05:15:01 +0900
|
||||
* j.utc? #=> false
|
||||
* t == j #=> true
|
||||
*
|
||||
* k = t.getlocal(9*60*60) #=> 2000-01-02 05:15:01 +0900
|
||||
* k.utc? #=> false
|
||||
* t == k #=> true
|
||||
*/
|
||||
|
||||
static VALUE
|
||||
|
|
Загрузка…
Ссылка в новой задаче