Currently I use pyscripter, PDB, pycharm to debug
Last active
August 29, 2015 14:05
-
-
Save rain1024/df4416c3342b0d1ed510 to your computer and use it in GitHub Desktop.
Python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
import unittest | |
class TestSequenceFunctions(unittest.TestCase): | |
def setUp(self): | |
self.seq = range(10) | |
def test_shuffle(self): | |
# make sure the shuffled sequence does not lose any elements | |
random.shuffle(self.seq) | |
self.seq.sort() | |
self.assertEqual(self.seq, range(10)) | |
# should raise an exception for an immutable sequence | |
self.assertRaises(TypeError, random.shuffle, (1,2,3)) | |
def test_choice(self): | |
element = random.choice(self.seq) | |
self.assertTrue(element in self.seq) | |
def test_sample(self): | |
with self.assertRaises(ValueError): | |
random.sample(self.seq, 20) | |
for element in random.sample(self.seq, 5): | |
self.assertTrue(element in self.seq) | |
if __name__ == '__main__': | |
unittest.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
python -m unittest test.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.INI |
#!/usr/bin/python
import thread
import time
# Define a function for the thread
def print_time( threadName, delay):
count = 0
while count < 5:
time.sleep(delay)
count += 1
print "%s: %s" % ( threadName, time.ctime(time.time()) )
# Create two threads as follows
try:
thread.start_new_thread( print_time, ("Thread-1", 2, ) )
thread.start_new_thread( print_time, ("Thread-2", 4, ) )
except:
print "Error: unable to start thread"
while 1:
pass
- Tutorialspoint.com, (2014). Python Multithreaded Programming. [online] Available at: http://www.tutorialspoint.com/python/python_multithreading.htm [Accessed 22 Aug. 2014].
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment