summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/concurrent/__init__.py
diff options
context:
space:
mode:
authorChristopher Larson <chris_larson@mentor.com>2012-01-08 17:17:23 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-20 16:47:32 +0000
commit299fa3489b6c1ed0e7dc5df6c297639934db8edb (patch)
treedf7c23513e89814c6f68cd35edfdb8132b1f8f09 /bitbake/lib/concurrent/__init__.py
parent7a8e1ef418a437c5461d87b7fd230373f293bfc8 (diff)
downloadpoky-299fa3489b6c1ed0e7dc5df6c297639934db8edb.tar.gz
Add dependency on the backported python 3.2 concurrent.futures
(Bitbake rev: 774f59f06e65a35df597aa77c0fa06ab66c46906) Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/concurrent/__init__.py')
-rw-r--r--bitbake/lib/concurrent/__init__.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/concurrent/__init__.py b/bitbake/lib/concurrent/__init__.py
new file mode 100644
index 0000000000..b36383a610
--- /dev/null
+++ b/bitbake/lib/concurrent/__init__.py
@@ -0,0 +1,3 @@
1from pkgutil import extend_path
2
3__path__ = extend_path(__path__, __name__)