Tryton のコード モジュールを読んでいると、このメソッドにたくさん出会いましたが、これが何のためにあるのかわかりませんでした。
Tryton でのこの関数の用途は何ですか?
@classmetod
def __register__(cls,module_name):
TableHandler = backend.get('TableHandler')
cursor = Transaction().cursor
table = TableHandler(cursor,cls,module_name)
super(Adress,cls).__register__(module_name)
table.not_null_action('sequence', action='remove')