mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
module constants should be looked up at top-level by default
This commit is contained in:
parent
dc0e15cf47
commit
77387b3e5c
1 changed files with 2 additions and 2 deletions
|
@ -25,8 +25,8 @@ class Pry
|
|||
# @return [Module, nil] The module or `nil` (if conversion failed).
|
||||
# @example
|
||||
# Pry::WrappedModule.from_str("Pry::Code")
|
||||
def self.from_str(mod_name)
|
||||
Pry::WrappedModule.new(eval(mod_name))
|
||||
def self.from_str(mod_name, binding=TOPLEVEL_BINDING)
|
||||
Pry::WrappedModule.new(binding.eval(mod_name))
|
||||
rescue RescuableException
|
||||
nil
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue