Port #1220212 (os.kill for Win32) to py3k.

This commit is contained in:
Brian Curtin 2010-04-12 17:16:38 +00:00
parent b2416e54b1
commit eb24d7498f
10 changed files with 200 additions and 6 deletions

View file

@ -1,6 +1,7 @@
import gc
import io
import os
import sys
import signal
import weakref
@ -8,6 +9,7 @@ import unittest
@unittest.skipUnless(hasattr(os, 'kill'), "Test requires os.kill")
@unittest.skipIf(sys.platform =="win32", "Test cannot run on Windows")
class TestBreak(unittest.TestCase):
def setUp(self):