1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/date/date_core.c (date_strftime_alloc): followed the change

of r32885.
	* doc/NEWS-1.9.3: followed the above change.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32958 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tadf 2011-08-13 00:12:05 +00:00
parent b5f05971f5
commit 0acaab201a
3 changed files with 14 additions and 4 deletions

View file

@ -145,10 +145,10 @@ with all sufficient information, see the ChangeLog file.
* A method strftime cannot produce huge output (same as Time's one).
* Even though Date/DateTime can handle far dates, the following gives
an empty string:
* Even though Date/DateTime can handle far dates, the following causes
an exception.
DateTime.new(1<<10000).strftime('%Y') #=> ""
DateTime.new(1<<10000).strftime('%Y') # Errno::ERANGE
* Changed the format of inspect.
* Changed the format of marshal (but, can load old dumps).