Python timeit.__doc__() Examples
The following are 5
code examples of timeit.__doc__().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
timeit
, or try the search function
.
Example #1
Source File: test_timeit.py From ironpython2 with Apache License 2.0 | 5 votes |
def test_main_help(self): s = self.run_main(switches=['-h']) self.assertEqual(s, timeit.__doc__)
Example #2
Source File: test_timeit.py From Fluid-Designer with GNU General Public License v3.0 | 5 votes |
def test_main_help(self): s = self.run_main(switches=['-h']) # Note: It's not clear that the trailing space was intended as part of # the help text, but since it's there, check for it. self.assertEqual(s, timeit.__doc__ + ' ')
Example #3
Source File: test_timeit.py From ironpython3 with Apache License 2.0 | 5 votes |
def test_main_help(self): s = self.run_main(switches=['-h']) # Note: It's not clear that the trailing space was intended as part of # the help text, but since it's there, check for it. self.assertEqual(s, timeit.__doc__ + ' ')
Example #4
Source File: test_timeit.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
def test_main_help(self): s = self.run_main(switches=['-h']) # Note: It's not clear that the trailing space was intended as part of # the help text, but since it's there, check for it. self.assertEqual(s, timeit.__doc__ + ' ')
Example #5
Source File: test_timeit.py From android_universal with MIT License | 5 votes |
def test_main_help(self): s = self.run_main(switches=['-h']) # Note: It's not clear that the trailing space was intended as part of # the help text, but since it's there, check for it. self.assertEqual(s, timeit.__doc__ + ' ')