1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1506 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
knu 2001-06-05 08:17:25 +00:00
parent b12904e85f
commit dd90741112

View file

@ -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
Experimentally altered to get the following code (note the space