diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-04-09 21:49:58 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-04-09 21:49:58 (GMT) |
commit | 131a6414dd023d8bfa71a05e76030c1e0aaf2c1d (patch) | |
tree | 3c78a195f7e96ba91dfb185e1073ba166750d472 /Misc | |
parent | c6a726d061023abf0fdf7af41a3602b8f405d303 (diff) | |
download | cpython-131a6414dd023d8bfa71a05e76030c1e0aaf2c1d.zip cpython-131a6414dd023d8bfa71a05e76030c1e0aaf2c1d.tar.gz cpython-131a6414dd023d8bfa71a05e76030c1e0aaf2c1d.tar.bz2 |
Issue #11757: select.select() now raises ValueError when a negative timeout
is passed (previously, a select.error with EINVAL would be raised). Patch
by Charles-François Natali.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -103,6 +103,10 @@ Core and Builtins Library ------- +- Issue #11757: select.select() now raises ValueError when a negative timeout + is passed (previously, a select.error with EINVAL would be raised). Patch + by Charles-François Natali. + - Issue #7311: fix html.parser to accept non-ASCII attribute values. - Issue #11605: email.parser.BytesFeedParser was incorrectly converting multipart |