This PEP proposes to introduce a new syntax, /, for specifying positional-only parameters in Python function definitions. Positional-only parameters have no externally-usable name. When a function ...
pythonはクラス外から任意のクラスメソッドを呼び出すと暗黙的に引数 self が渡されるため、クラスメソッドの引数1つ目に必ず self を取らなければならない、というルールがある。
I've tested it with Python 2.7 and 3.6. It's not meant to be a replacement for PEP 570 -- it was a fun project just to see if it would be possible to backport this, and possibly provide a deprecation ...