摘要: #!/usr/bin/env python3.3# -*- coding: utf-8 -*-# Copyright 2013from test import supportimport unittestimport randomimport sortclass SortTests(unittest.TestCase): def setUp(self): self.data = [random.randint(1, 10000) for i in range(10000)] def tearDown(self): self.... 阅读全文
posted @ 2013-03-05 09:32 Leung文 阅读(124) 评论(0) 推荐(0) 编辑