Add NEWS entry about Module#name performance (#2779)

This commit is contained in:
Alan Wu 2019-12-24 14:02:50 -05:00 коммит произвёл GitHub
Родитель 5220145ea2
Коммит 3e9221d94a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 0 удалений

3
NEWS
Просмотреть файл

@ -434,6 +434,9 @@ Module::
* Module#autoload? now takes an +inherit+ optional argument, like
Module#const_defined?. [Feature #15777]
* Module#name and Module#inspect no longer search through all defined
constants when the receiver is anonymous. [Feature #15765]
* Module#name now always returns a frozen String. The returned String is
always the same for a given Module. This change is
experimental. [Feature #16150]