2007-03-25から1日間の記事一覧

dictのインスタンスにattributeがセットできない(2)

dictと言うより組み込み型全てでできないみたい。 >>> list().y = 1 Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: 'list' object has no attribute 'y' __slots__属性を与えてやれば同様な制限をかけられる。しかし、__slots__</module></stdin>…