Parar o arquivo de configuração com o mesmo nome de seção em python

Tento analisar o arquivo como:

[account]
User = first

[account]
User = second

Uso o ConfigParser em Python, mas quando leio o arquivo:

Config = configparser.ConfigParser()
Config.read(file)
print (Config.sections())

Eu tenho erro:

While reading from ... : section 'account' already exists

Como posso analisar este arquivo? Existe outra biblioteca? (prefira python3)

questionAnswers(8)

yourAnswerToTheQuestion