aboutsummaryrefslogtreecommitdiffstats
path: root/lib/pp.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/pp.rb')
-rw-r--r--lib/pp.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/pp.rb b/lib/pp.rb
index bc15429ddc..74cdda072a 100644
--- a/lib/pp.rb
+++ b/lib/pp.rb
@@ -549,9 +549,6 @@ module Kernel
PP.pp(self, ''.dup)
end
- # :stopdoc:
- alias __pp_backup__ pp if method_defined?(:pp)
- # :startdoc:
# prints arguments in pretty form.
#
# pp returns argument(s).
@@ -561,7 +558,6 @@ module Kernel
}
objs.size <= 1 ? objs.first : objs
end
- undef __pp_backup__ if method_defined?(:__pp_backup__)
module_function :pp
end