sfstoolbox / sfs-python

SFS Toolbox for Python
https://sfs-python.readthedocs.io
MIT License
65 stars 19 forks source link

Keyword-only arguments everywhere #140

Closed mgeier closed 5 years ago

mgeier commented 5 years ago

Keyword-only arguments are a nice Python 3 feature to force the user to use keyword arguments, avoiding very long sequences of positional parameters.

The good thing is that if it gets annoying, the requirements can be weakened without causing backwards-compatibility issues.

Adding them is typically backwards-incompatible.