Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/nameparser/config/conjunctions.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-06-07 06:08 +0000

1# -*- coding: utf-8 -*- 

2from __future__ import unicode_literals 

3 

4CONJUNCTIONS = set([ 

5 '&', 

6 'and', 

7 'et', 

8 'e', 

9 'of', 

10 'the', 

11 'und', 

12 'y', 

13]) 

14""" 

15Pieces that should join to their neighboring pieces, e.g. "and", "y" and "&". 

16"of" and "the" are also include to facilitate joining multiple titles, 

17e.g. "President of the United States". 

18"""