From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 73AE51381F3 for ; Fri, 11 Oct 2013 17:39:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E8639E07B3; Fri, 11 Oct 2013 17:38:56 +0000 (UTC) Received: from mail-pa0-f51.google.com (mail-pa0-f51.google.com [209.85.220.51]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4935DE0980 for ; Fri, 11 Oct 2013 17:38:56 +0000 (UTC) Received: by mail-pa0-f51.google.com with SMTP id kp14so4692356pab.24 for ; Fri, 11 Oct 2013 10:38:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=KYzdSV1CYA6qsivhegoiUB5eOIDLMPvpNzTDVLhi3jI=; b=MEm3drOK/JTUmWHKfo8ZFl7CLPfMneKJmBDzvVV73qsYsVV2nNmxQQkaO5+hJXrC/H 5xv8pFoRu+KyDnqv/u617yCX6m51XtirfZ/T5T1G4IHuQGYQboG7cW4LGOzwN3tkNtSh AEHxJXg3Y1BARhOAa35B3a5/TP1TyyZAMy+nAvAs92W6HWvyz9yRANc5GfWysOL1LFed V/Jv0Tv0+RwXU3Y2+0sFxpefbJ36IjvlsgNTICF8xdtYYr8I4lfSCxCMpWq8bLsubJUf wsmUpXzsOXWvmsmthIDZHTLc7r7ht3EWesWY4XvwVu7MB5IBEa7UtEz163z68boyJOuQ Rhsw== X-Received: by 10.68.182.3 with SMTP id ea3mr21460503pbc.124.1381513135068; Fri, 11 Oct 2013 10:38:55 -0700 (PDT) Received: from localhost.localdomain (75-92-167-159.war.clearwire-wmx.net. [75.92.167.159]) by mx.google.com with ESMTPSA id gg10sm61128484pbc.46.1969.12.31.16.00.00 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Fri, 11 Oct 2013 10:38:54 -0700 (PDT) From: Dylan Baker To: gentoo-catalyst@lists.gentoo.org Cc: Dylan Baker Subject: [gentoo-catalyst] [PATCH 3/4] catalyst: split combined import Date: Fri, 11 Oct 2013 10:38:26 -0700 Message-Id: <1381513107-17483-3-git-send-email-baker.dylan.c@gmail.com> X-Mailer: git-send-email 1.8.1.5 In-Reply-To: <1381513107-17483-1-git-send-email-baker.dylan.c@gmail.com> References: <1381513107-17483-1-git-send-email-baker.dylan.c@gmail.com> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Archives-Salt: 08f70c59-1945-4a73-80e4-23c6b43abbcb X-Archives-Hash: 9f1a26cd3c4cc3edb67bbc206e6de352 Combining multiple modules into a single import is discouraged in python's PEP8 style guide: """ Imports should usually be on separate lines, e.g.: Yes: import os import sys No: import sys, os """ --- catalyst | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/catalyst b/catalyst index be1548f..406250c 100755 --- a/catalyst +++ b/catalyst @@ -7,7 +7,11 @@ # Chris Gianelloni # $Id$ -import os, sys, imp, string, getopt +import os +import sys +import imp +import string +import getopt import pdb import os.path -- 1.8.1.5