Unify print function usage for Python 2 and 3 via __future__ import

This commit is contained in:
Moritz Lell 2019-10-30 19:09:39 +01:00
commit 62845688e5
7 changed files with 7 additions and 0 deletions

View file

@ -1,4 +1,5 @@
"""Code for parallel-building a set of targets, if needed."""
from __future__ import print_function
import errno, os, stat, signal, sys, tempfile, time
from . import cycles, env, helpers, jobserver, logs, paths, state
from .logs import debug2, err, warn, meta