summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cooker.py
diff options
context:
space:
mode:
authorFrazer Clews <frazer.clews@codethink.co.uk>2020-01-16 16:55:18 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-01-19 13:31:05 +0000
commit0ac5174c7d39a3e49893df0d517d47bec1935555 (patch)
tree479496afb1da7814071e39e888e8926cd03bec57 /bitbake/lib/bb/cooker.py
parent444bcb6cb6be8d5205fc88790360d864e633a555 (diff)
downloadpoky-0ac5174c7d39a3e49893df0d517d47bec1935555.tar.gz
bitbake: lib: remove unused imports
removed unused imports which made the code harder to read, and slightly but less efficient (Bitbake rev: 4367692a932ac135c5aa4f9f2a4e4f0150f76697) Signed-off-by: Frazer Clews <frazer.clews@codethink.co.uk> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r--bitbake/lib/bb/cooker.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index b74affa7ec..3d65b0cb74 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -10,7 +10,6 @@
10# 10#
11 11
12import sys, os, glob, os.path, re, time 12import sys, os, glob, os.path, re, time
13import atexit
14import itertools 13import itertools
15import logging 14import logging
16import multiprocessing 15import multiprocessing
@@ -18,14 +17,11 @@ import sre_constants
18import threading 17import threading
19from io import StringIO, UnsupportedOperation 18from io import StringIO, UnsupportedOperation
20from contextlib import closing 19from contextlib import closing
21from functools import wraps
22from collections import defaultdict, namedtuple 20from collections import defaultdict, namedtuple
23import bb, bb.exceptions, bb.command 21import bb, bb.exceptions, bb.command
24from bb import utils, data, parse, event, cache, providers, taskdata, runqueue, build 22from bb import utils, data, parse, event, cache, providers, taskdata, runqueue, build
25import queue 23import queue
26import signal 24import signal
27import subprocess
28import errno
29import prserv.serv 25import prserv.serv
30import pyinotify 26import pyinotify
31import json 27import json