# File lib/pry/default_commands/introspection.rb, line 271
        def normal_module
          file_name = line = code = nil
          attempt do |rank|
            file_name, line = module_object.candidate(rank).source_location
            set_file_and_dir_locals(file_name)
            code = Code.from_module(module_object, module_start_line(module_object, rank), rank).
              with_line_numbers(use_line_numbers?).to_s
          end

          result = ""
          result << "\n#{Pry::Helpers::Text.bold('From:')} #{file_name} @ line #{line}:\n"
          result << "#{Pry::Helpers::Text.bold('Number of lines:')} #{code.lines.count}\n\n"
          result << code
        end