jaraco/inflect

Undocumented `False` for `singular_noun` if word is already singular

Open

#73 opened on Feb 15, 2019

 (7 comments) (0 reactions) (0 assignees)Python (125 forks)github user discovery
help wanted

Repository metrics

Stars
 (1,082 stars)
PR merge metrics
 (No merged PRs in 30d)

Description

>>> word = 'woman'
>>> word = p.plural_noun(word)
>>> word
'women'
>>> word = p.plural_noun(word)
>>> word
'womens'

Contributor guide