Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/nameparser/config/capitalization.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 

4CAPITALIZATION_EXCEPTIONS = ( 

5 ('ii', 'II'), 

6 ('iii', 'III'), 

7 ('iv', 'IV'), 

8 ('md', 'M.D.'), 

9 ('phd', 'Ph.D.'), 

10) 

11""" 

12Any pieces that are not capitalized by capitalizing the first letter. 

13"""