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.

classification
Title: Typo in decimal error message
Type: enhancement Stage: resolved
Components: Extension Modules Versions: Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: skrah Nosy List: Angus Hollands, skrah
Priority: normal Keywords:

Created on 2017-04-03 13:48 by Angus Hollands, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 976 merged Angus Hollands, 2017-04-03 13:55
Messages (2)
msg291070 - (view) Author: Angus Hollands (Angus Hollands) * Date: 2017-04-03 13:48
When passing an object that fails Py_FloatCheck, the error message raised reads
"argument must be int of float", rather than "argument must be int or float"
msg291080 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2017-04-03 16:21
Merged, thank you.
History
Date User Action Args
2022-04-11 14:58:44adminsetgithub: 74155
2017-04-03 16:21:53skrahsetstatus: open -> closed

assignee: skrah

nosy: + skrah
messages: + msg291080
resolution: fixed
stage: resolved
2017-04-03 13:55:54Angus Hollandssetpull_requests: + pull_request1151
2017-04-03 13:48:45Angus Hollandscreate