[issue26302] cookies module allows commas in keys

2016-02-05 Thread Jason R. Coombs
New submission from Jason R. Coombs: Commas aren't legal characters in cookie keys, yet in Python 3.5, they're allowed: >>> bool(http.cookies._is_legal_key(',')) True The issue lies in the use of _LegalChars constructing a regular expression. "Some people, when confronted with a problem,

<    1   2