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 Jim Fasarakis-Hilliard
Recipients Jim Fasarakis-Hilliard
Date 2017-03-25.17:35:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1490463341.4.0.570341233776.issue29904@psf.upfronthosting.co.za>
In-reply-to
Content
Specifically, the list I've currently found in .py files:

- _pyio.py:

    ValueError("flush of closed file")
    ValueError("flush of closed file")

"of" -> "on" for both.

- configparser.py:

    ValueError("Required argument `source' not given.")
    ValueError("Cannot specify both `filename' and `source'. "

fix ` on the quotes on argument names.

- windows_utils.py

    ValueError("I/O operatioon on closed pipe")

"operatioon" -> "operation"

- proactor_events.py, asynchat.py:

    TypeError('data argument must be byte-ish (%r)',
    raise TypeError('data argument must be byte-ish (%r)',

AFAIK, "byte-ish" isn't used elsewhere, the author probably mean to go for "bytes-like object".

- _header_value_parser.py:

    errors.HeaderParseError("expected atom at a start of "

"at a start of " -> "at the start of "

- http/cookiejar.py:

    raise ValueError("filename must be string-like")
    
I think "must be a str" was intended.
History
Date User Action Args
2017-03-25 17:35:41Jim Fasarakis-Hilliardsetrecipients: + Jim Fasarakis-Hilliard
2017-03-25 17:35:41Jim Fasarakis-Hilliardsetmessageid: <1490463341.4.0.570341233776.issue29904@psf.upfronthosting.co.za>
2017-03-25 17:35:41Jim Fasarakis-Hilliardlinkissue29904 messages
2017-03-25 17:35:41Jim Fasarakis-Hilliardcreate