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: Fix the output word from "ok" to "OK" when a testcase passes
Type: Stage:
Components: None Versions: Python 3.1, Python 3.2
process
Status: closed Resolution: works for me
Dependencies: Superseder:
Assigned To: Nosy List: Retro, benjamin.peterson
Priority: normal Keywords:

Created on 2009-05-14 10:06 by Retro, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg87732 - (view) Author: Boštjan Mejak (Retro) Date: 2009-05-14 10:06
you@localhost:~$ python3 romantest1.py -v
to_roman should give known result with known input ... ok

Better would be:
you@localhost:~$ python3 romantest1.py -v
to_roman should give known result with known input ... OK

Since other words are capitalized, this one should be, too. Please fix that.
msg87947 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2009-05-17 02:20
I think the idea is that things like FAIL and ERROR are supposed to grab
your attention as opposed to a simple "ok".
History
Date User Action Args
2022-04-11 14:56:48adminsetgithub: 50268
2009-05-17 02:20:10benjamin.petersonsetstatus: open -> closed

nosy: + benjamin.peterson
messages: + msg87947

resolution: works for me
2009-05-14 10:06:41Retrocreate