diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-06-29 17:20:02 +0200 |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-06-29 17:20:02 +0200 |
commit | 125b2ba41e62a207295ae6cae801218aaec675eb (patch) | |
tree | 616dd044561ba2a09dcd23302ac11bc9abd26c0f | |
parent | bddc4d4607a26603b2171f0663c506c8994e0a5b (diff) | |
download | cpython-git-125b2ba41e62a207295ae6cae801218aaec675eb.tar.gz |
Issue #12400: Add missing import (os) to test_kqueue
-rw-r--r-- | Lib/test/test_kqueue.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/test/test_kqueue.py b/Lib/test/test_kqueue.py index 5c9f7c9cea..4e9301307c 100644 --- a/Lib/test/test_kqueue.py +++ b/Lib/test/test_kqueue.py @@ -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 |