8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bf984d commit 3054f7bCopy full SHA for 3054f7b
pyperformance/_pyproject_toml.py
@@ -44,7 +44,7 @@ def parse_entry_point(text):
44
# See:
45
# * https://packaging.python.org/specifications/entry-points/#data-model
46
# * https://www.python.org/dev/peps/pep-0517/#source-trees
47
- module, sep, qualname = text.parition(':')
+ module, sep, qualname = text.partition(':')
48
if all(p.isidentifier() for p in module.split('.')):
49
if not sep or all(p.isidentifier() for p in qualname.split('.')):
50
return module, qualname
0 commit comments