Example #1
0
def inflect_collocation(phrase, forms):
    if not phrase or not forms:
        return phrase
    return _process_unmarked_phrase(force_text(phrase), inflect_collocation_phrase, *get_forms_tuple(forms))
Example #2
0
def inflect_collocation(phrase, forms):
    if not phrase or not forms:
        return phrase
    return _process_unmarked_phrase(force_text(phrase), inflect_collocation_phrase, *get_forms_tuple(forms))
Example #3
0
def inflect_marked(phrase, forms):
    if not phrase or not forms:
        return phrase
    return _process_marked_phrase(force_text(phrase), inflect_phrase, *get_forms_tuple(forms))
Example #4
0
def inflect_marked(phrase, forms):
    if not phrase or not forms:
        return phrase
    return _process_marked_phrase(force_text(phrase), inflect_phrase, *get_forms_tuple(forms))