diff options
| -rw-r--r-- | BibTeX.py | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -860,7 +860,15 @@ class FileIter: self.lineno += 1 return self._next() + def parseAuthor(s): + try: + return _parseAuthor(s) + except: + print >>sys.stderr, "Internal error while parsing author %r"%s + raise + +def _parseAuthor(s): """Take an author string and return a list of ParsedAuthor.""" items = [] |
