This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Marcin Niemira
Recipients Guido, Marcin Niemira, barry, maxking, r.david.murray
Date 2019-07-01.13:07:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1561986430.44.0.449801703664.issue37461@roundup.psfhosted.org>
In-reply-to
Content
Sounds like there is an infinite loop here:


```
Pdb) 
> /usr/lib/python3.7/email/_header_value_parser.py(2370)get_parameter()
-> v.append(token)
(Pdb) 
> /usr/lib/python3.7/email/_header_value_parser.py(2365)get_parameter()
-> while value:
```

the ```v.append(token)``` is just growing with ```ValueTerminal(''), ValueTerminal(''), ValueTerminal('')...```

I'd be happy to try to fix this.
History
Date User Action Args
2019-07-01 13:07:10Marcin Niemirasetrecipients: + Marcin Niemira, barry, r.david.murray, maxking, Guido
2019-07-01 13:07:10Marcin Niemirasetmessageid: <1561986430.44.0.449801703664.issue37461@roundup.psfhosted.org>
2019-07-01 13:07:10Marcin Niemiralinkissue37461 messages
2019-07-01 13:07:10Marcin Niemiracreate