mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Issue #20315: Removed support for backward compatibility with early 2.x versions.
Removed backward compatibility alias curses.window.nooutrefresh which should be removed in 2.3.
This commit is contained in:
commit
ab0ac27d24
8 changed files with 3 additions and 98 deletions
|
@ -695,9 +695,6 @@ class _TestQueue(BaseTestCase):
|
|||
def test_task_done(self):
|
||||
queue = self.JoinableQueue()
|
||||
|
||||
if sys.version_info < (2, 5) and not hasattr(queue, 'task_done'):
|
||||
self.skipTest("requires 'queue.task_done()' method")
|
||||
|
||||
workers = [self.Process(target=self._test_task_done, args=(queue,))
|
||||
for i in range(4)]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue