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: it looks like a typo in unittest
Type: Stage: resolved
Components: Tests Versions: Python 2.6
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: artech, eric.araujo
Priority: normal Keywords:

Created on 2010-02-06 15:55 by artech, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (5)
msg98943 - (view) Author: Mezhenin Artyom (artech) Date: 2010-02-06 15:55
Try to run any test a you will see something like this:

./<TestModule>.py 
.......
----------------------------------------------------------------------
Ran 7 tests in 0.069s

OK

But there is no word "Ran" in English. I think the word is "Run".
msg98944 - (view) Author: Mezhenin Artyom (artech) Date: 2010-02-06 15:57
Same text here:
http://docs.python.org/library/unittest.html#basic-example
msg98945 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2010-02-06 15:58
Hello

“Ran” is the preterite form of “run”. It is used here because at the time of the print, the tests are done, it’s past.

Regards
msg98946 - (view) Author: Mezhenin Artyom (artech) Date: 2010-02-06 16:04
Sorry, I'm from Russia.

P.S. http://translate.google.com/ sucks =)
msg98947 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2010-02-06 16:06
No problem, I’m from France :)

And yes, automatic translation does not work. Or at least not gratis.

Cheers
History
Date User Action Args
2022-04-11 14:56:57adminsetgithub: 52114
2010-02-06 16:06:53eric.araujosetmessages: + msg98947
2010-02-06 16:04:59artechsetmessages: + msg98946
2010-02-06 16:00:29ezio.melottisetstatus: open -> closed
resolution: not a bug
stage: resolved
2010-02-06 15:58:08eric.araujosetnosy: + eric.araujo
messages: + msg98945
2010-02-06 15:57:19artechsetmessages: + msg98944
2010-02-06 15:55:09artechcreate