Actions
Bug #7916
closedCallback Module.used is not used...
Bug #7916:
Callback Module.used is not used...
Description
Module.used was meant to be called when it is called with using, see r36596.
It's not called right now.
Updated by shugo (Shugo Maeda) over 12 years ago
marcandre (Marc-Andre Lafortune) wrote:
Module.used was meant to be called when it is called with
using, see r36596.It's not called right now.
It's because Module#using is removed.
Module#used is intended to be called when Module#using is called, so Module#used should be removed now.
Updated by shugo (Shugo Maeda) over 12 years ago
- Status changed from Open to Closed
- % Done changed from 0 to 100
This issue was solved with changeset r39739.
Marc-Andre, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
- object.c (Init_Object): remove Module#used, which has been
introduced in Ruby 2.0 by mistake. [Bug #7916] [ruby-core:52719]
Actions