mocobeta / janome

Japanese morphological analysis engine written in pure Python
https://mocobeta.github.io/janome/en/
Apache License 2.0
848 stars 51 forks source link

Refactoring: Use keyword-only arguments (PEP 3102) for public APIs #77

Closed mocobeta closed 4 years ago

mocobeta commented 4 years ago

For public APIs that takes a number of arguments, it would be desirable for safety that arguments are explicitly specified by name, not implicitly filled by their positions.

Related issue: #73