From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 16F63138351 for ; Sat, 28 Mar 2020 20:07:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0ECAFE0C26; Sat, 28 Mar 2020 20:07:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CD59AE0C26 for ; Sat, 28 Mar 2020 20:07:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DB85734F986 for ; Sat, 28 Mar 2020 20:07:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 02F0E1A9 for ; Sat, 28 Mar 2020 20:07:06 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1585380926.8f86a7f6e890b03ac24a94d567df79a64ccf9e74.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: bin/, doc/, /, catalyst/ X-VCS-Repository: proj/catalyst X-VCS-Files: bin/catalyst bin/catalyst.git bin/pylint catalyst/log.py doc/make_target_table.py setup.py X-VCS-Directories: doc/ / bin/ catalyst/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 8f86a7f6e890b03ac24a94d567df79a64ccf9e74 X-VCS-Branch: master Date: Sat, 28 Mar 2020 20:07:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: adb8184d-c98f-49e6-82ec-56b56a186e0e X-Archives-Hash: 0614379e8fe0b327d03566613b9721b6 commit: 8f86a7f6e890b03ac24a94d567df79a64ccf9e74 Author: Matt Turner gentoo org> AuthorDate: Sat Mar 28 07:02:37 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat Mar 28 07:35:26 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=8f86a7f6 catalyst: Remove unnecessary future imports Catalyst has been python 3-only for a while. Signed-off-by: Matt Turner gentoo.org> bin/catalyst | 2 -- bin/catalyst.git | 2 -- bin/pylint | 2 -- catalyst/log.py | 2 -- doc/make_target_table.py | 2 -- setup.py | 2 -- 6 files changed, 12 deletions(-) diff --git a/bin/catalyst b/bin/catalyst index d3448fd8..228a913e 100755 --- a/bin/catalyst +++ b/bin/catalyst @@ -1,7 +1,5 @@ #!/usr/bin/python -OO -from __future__ import print_function - import sys # This block ensures that ^C interrupts are handled quietly. diff --git a/bin/catalyst.git b/bin/catalyst.git index eb6234b9..733ade15 100755 --- a/bin/catalyst.git +++ b/bin/catalyst.git @@ -5,8 +5,6 @@ """Run catalyst from git using local modules/scripts.""" -from __future__ import print_function - import os import sys import tempfile diff --git a/bin/pylint b/bin/pylint index b0018278..6c718134 100755 --- a/bin/pylint +++ b/bin/pylint @@ -4,8 +4,6 @@ """Run pylint with the right settings.""" -from __future__ import print_function - import os import sys diff --git a/catalyst/log.py b/catalyst/log.py index d640dece..7956c28f 100644 --- a/catalyst/log.py +++ b/catalyst/log.py @@ -8,8 +8,6 @@ another level "notice" between warning & info, and all output goes through the "catalyst" logger. """ -from __future__ import print_function - import logging import logging.handlers import os diff --git a/doc/make_target_table.py b/doc/make_target_table.py index c4b49ad9..d1f97c9b 100755 --- a/doc/make_target_table.py +++ b/doc/make_target_table.py @@ -8,8 +8,6 @@ # source the testpath file then run "doc/make_target_table.py" -from __future__ import print_function - import glob import locale import os diff --git a/setup.py b/setup.py index c6b52dcf..c6553b5d 100755 --- a/setup.py +++ b/setup.py @@ -1,8 +1,6 @@ #!/usr/bin/env python """Catalyst is a release building tool used by Gentoo Linux""" -from __future__ import print_function - import codecs as _codecs from distutils.core import setup as _setup, Command as _Command from email.utils import parseaddr as _parseaddr