help とか

今日気づいたこと。

Python 2.5.1 (r251:54863, Oct  5 2007, 13:50:07) 
[GCC 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> type(help)
<class 'site._Helper'>
>>> type(copyright)
<class 'site._Printer'>
>>> type(credits)
<class 'site._Printer'>
>>> type(license)
<class 'site._Printer'>

Python インタープリタの機能と見せて、全部ただのオブジェクト。え、常識?