File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 11Release Log
22===========
3+ * 0.5.7 - June 16, 2018
4+ - Fix doc link (#73)
5+ - Fix handling of "do" and "dos" Portuguese prefixes (#71, #72)
36* 0.5.6 - January 15, 2018
47 - Fix python version check (#64)
58* 0.5.5 - January 10, 2018
Original file line number Diff line number Diff line change 1- VERSION = (0, 5, 6 )
1+ VERSION = (0, 5, 7 )
22__version__ = '.'.join(map(str, VERSION))
33__author__ = "Derek Gulbranson"
44__author_email__ = 'derek73@gmail.com'
Original file line number Diff line number Diff line change @@ -1887,6 +1887,11 @@ def test_short_names_with_mac(self):
18871887 hn.capitalize()
18881888 self.m(str(hn), 'Mack Johnson', hn)
18891889
1890+ def test_portuguese_prefixes(self):
1891+ hn = HumanName("joao da silva do amaral de souza")
1892+ hn.capitalize()
1893+ self.m(str(hn), 'Joao da Silva do Amaral de Souza', hn)
1894+
18901895class HumanNameOutputFormatTests(HumanNameTestBase):
18911896
18921897 def test_formatting_init_argument(self):
You can’t perform that action at this time.
0 commit comments