Issue #12400: Add missing import (os) to test_kqueue

This commit is contained in:
Victor Stinner 2011-06-29 17:20:02 +02:00
parent bddc4d4607
commit 125b2ba41e
1 changed files with 3 additions and 2 deletions

View File

@ -1,11 +1,12 @@
"""
Tests for kqueue wrapper.
"""
import socket
import errno
import time
import os
import select
import socket
import sys
import time
import unittest
from test import support