Python関数の引数で識別子のない単一の*はどういう意味ですか?Python3.2で動作する例を次に示します。
class Shape:
def __init__(self, *, shapename, **kwds):
self.shapename = shapename
super().__init__(**kwds)
私にとって、自己の後の星は奇妙です。
私はここでそれを見つけました(行46から): http ://code.activestate.com/recipes/577720-how-to-use-super-effectively/