Update.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1506 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b12904e85f
commit
dd90741112
32
doc/NEWS
32
doc/NEWS
@ -1,3 +1,35 @@
|
|||||||
|
: Array expansion
|
||||||
|
|
||||||
|
Fixed with the following behavior:
|
||||||
|
|
||||||
|
a = *[1]
|
||||||
|
p a #=> [1]
|
||||||
|
|
||||||
|
Now 1-element array in rhs is expanded properly.
|
||||||
|
|
||||||
|
a = *[1]
|
||||||
|
p a #=> 1
|
||||||
|
|
||||||
|
: NameError & NoMethodError
|
||||||
|
|
||||||
|
Moved and now NoMethodError < NameError < StandardError.
|
||||||
|
|
||||||
|
: open
|
||||||
|
|
||||||
|
Extended so that when the third argument is permission flags it
|
||||||
|
calls open(2) instead of fopen(3).
|
||||||
|
|
||||||
|
: Marshal
|
||||||
|
|
||||||
|
Fixed not to dump anonymous classes/modules.
|
||||||
|
|
||||||
|
Fixed with loading modules.
|
||||||
|
|
||||||
|
: constants
|
||||||
|
|
||||||
|
Improved at the performance of searching by using an internal hash
|
||||||
|
table.
|
||||||
|
|
||||||
: Syntax
|
: Syntax
|
||||||
|
|
||||||
Experimentally altered to get the following code (note the space
|
Experimentally altered to get the following code (note the space
|
||||||
|
Loading…
x
Reference in New Issue
Block a user