2008-01-13から1日間の記事一覧

__builtins__.dir って何 ?

Python-2.5.1/Objects/object.c:PyObject_Dir を Python に変換するとこんな感じ↓ import sys from types import * def dir(object=object()): """This is an implementation of __builtins__.dir in pure Python.""" result = getattr(object, '__dict__', …