diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-12 08:22:18 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-02 08:24:02 +0100 |
commit | ef1df516512587ad415f76a9626620992d660e45 (patch) | |
tree | 6b4e30dbc7ab8cb17fb877c82ccf7593138c88cc /bitbake/lib/bb/fetch2 | |
parent | deca1476459ab306dc5c80171fdf0d227decbea4 (diff) | |
download | poky-ef1df516512587ad415f76a9626620992d660e45.tar.gz |
bitbake: bitbake: Drop futures usage since we're python 3
(Bitbake rev: bf25f05ce4db11466e62f134f9a6916f886a93d9)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/fetch2')
-rw-r--r-- | bitbake/lib/bb/fetch2/__init__.py | 2 | ||||
-rw-r--r-- | bitbake/lib/bb/fetch2/perforce.py | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index 7d2f3504c8..14fe3c753a 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py | |||
@@ -25,8 +25,6 @@ BitBake build tools. | |||
25 | # | 25 | # |
26 | # Based on functions from the base bb module, Copyright 2003 Holger Schurig | 26 | # Based on functions from the base bb module, Copyright 2003 Holger Schurig |
27 | 27 | ||
28 | from __future__ import absolute_import | ||
29 | from __future__ import print_function | ||
30 | import os, re | 28 | import os, re |
31 | import signal | 29 | import signal |
32 | import logging | 30 | import logging |
diff --git a/bitbake/lib/bb/fetch2/perforce.py b/bitbake/lib/bb/fetch2/perforce.py index 3a10c7ca33..1aef246942 100644 --- a/bitbake/lib/bb/fetch2/perforce.py +++ b/bitbake/lib/bb/fetch2/perforce.py | |||
@@ -25,7 +25,6 @@ BitBake build tools. | |||
25 | # | 25 | # |
26 | # Based on functions from the base bb module, Copyright 2003 Holger Schurig | 26 | # Based on functions from the base bb module, Copyright 2003 Holger Schurig |
27 | 27 | ||
28 | from future_builtins import zip | ||
29 | import os | 28 | import os |
30 | import subprocess | 29 | import subprocess |
31 | import logging | 30 | import logging |