From afaaa29c613d8f521893081afaeacdb3c73b4fd3 Mon Sep 17 00:00:00 2001 From: cclauss Date: Tue, 25 Jun 2019 10:23:38 +0200 Subject: [PATCH] gyp: remove from __future__ import with_statement This \_\_future\_\_ import is no longer required in Python >= 2.6. https://docs.python.org/2/library/__future__.html PR-URL: https://github.com/nodejs/node-gyp/pull/1799 Reviewed-By: Rod Vagg --- gyp/pylib/gyp/common.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/gyp/pylib/gyp/common.py b/gyp/pylib/gyp/common.py index b7bae925f4..834a8e6c95 100644 --- a/gyp/pylib/gyp/common.py +++ b/gyp/pylib/gyp/common.py @@ -2,8 +2,6 @@ # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. -from __future__ import with_statement - import collections import errno import filecmp