Closed
Description
https://code.google.com/p/python-nameparser/issues/detail?id=30
What steps will reproduce the problem?
- HumanName("John Smith Jr.")
- HumanName("Smith Jr., John")
What is the expected output?
<HumanName : [
Title: ''
First: 'John'
Middle: ''
Last: 'Smith'
Suffix: 'Jr.'
]>
What do you see instead?
<HumanName : [
Title: ''
First: 'John'
Middle: ''
Last: 'Smith Jr.'
Suffix: ''
]>
What version of the product are you using? On what operating system?
0.2.7, Python 2.7, Windows 7