[Python-checkins] r81043 - in python/trunk: Lib/test/test_asyncore.py Misc/NEWS (original) (raw)

giampaolo.rodola python-checkins at python.org
Mon May 10 17:33:22 CEST 2010


Author: giampaolo.rodola Date: Mon May 10 17:33:22 2010 New Revision: 81043

Log: Issue #8490: adds a more solid test suite for asyncore

Modified: python/trunk/Lib/test/test_asyncore.py python/trunk/Misc/NEWS

Modified: python/trunk/Lib/test/test_asyncore.py

--- python/trunk/Lib/test/test_asyncore.py (original) +++ python/trunk/Lib/test/test_asyncore.py Mon May 10 17:33:22 2010 @@ -418,11 +418,285 @@ self.assertEqual(file(TESTFN).read(), self.d + d1 + d2)

+class BaseTestHandler(asyncore.dispatcher): +

Modified: python/trunk/Misc/NEWS

--- python/trunk/Misc/NEWS (original) +++ python/trunk/Misc/NEWS Mon May 10 17:33:22 2010 @@ -211,6 +211,9 @@ Tests

+- Issue #8490: asyncore now has a more solid test suite which actually tests + its API. + - Issue #8576: Remove use of find_unused_port() in test_smtplib and test_multiprocessing. Patch by Paul Moore.


More information about the Python-checkins mailing list