From patchwork Fri Dec 7 09:36:40 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joel Brobecker X-Patchwork-Id: 204437 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 27C0B2C00FE for ; Fri, 7 Dec 2012 20:37:21 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1355477842; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Received:Received:From:To:Cc:Subject:Date:Message-Id: Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive: List-Post:List-Help:Sender:Delivered-To; bh=QuplNcTx+UEmbwlkpU+q XGK1SBU=; b=csUarmdmOKwPBQg/9u0Gu1S9EUilHHCTrOSv4cpqTLp1CkieKIjW JbN893+VZsTAyh0rMAdWGUs/o2+DgSfTSGua9+YMNmQsoXdKrOgtETicBbsPalrA s0Lu0f6m6rq7J6QLxzFM+EbzuBqWYTHbwYUnVqGFvugbn5JrvC24BlM= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Received:Received:Received:From:To:Cc:Subject:Date:Message-Id:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=bdq1fRabXTQb/4IGjqsaHFp87vzaH2VMVWqpSnX3E/4Zu0gHWJi+rDZcklsGcP LEeaVj/ncLbm93PjivMaARlgqp32daXdtKBCTq7sUItzcL44ND4+AmbTIQN6Zm0d GZf0swhWFvg2Q26s1QRDBH7O1Llq/136qbj5w7CegLNEw=; Received: (qmail 10345 invoked by alias); 7 Dec 2012 09:37:05 -0000 Received: (qmail 10238 invoked by uid 22791); 7 Dec 2012 09:37:04 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL, BAYES_00, RCVD_IN_HOSTKARMA_NO, RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 07 Dec 2012 09:37:00 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 0D1AC2E1AF; Fri, 7 Dec 2012 04:37:00 -0500 (EST) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id cGRAvIXepjXR; Fri, 7 Dec 2012 04:36:59 -0500 (EST) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id 956FB2E1A6; Fri, 7 Dec 2012 04:36:59 -0500 (EST) Received: by joel.gnat.com (Postfix, from userid 1000) id B34ABC3745; Fri, 7 Dec 2012 13:36:45 +0400 (RET) From: Joel Brobecker To: gcc-patches@gcc.gnu.org Cc: gdb-patches@sourceware.org, Joel Brobecker Subject: [RFA] .gitignore: Ignore *.pyc files. Date: Fri, 7 Dec 2012 13:36:40 +0400 Message-Id: <1354873000-16039-1-git-send-email-brobecker@adacore.com> Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Hello, The GDB sources contain some python files, and executing them causes these .pyc files to appear. We could ignore them in GDB only, but I think this is the type of extension (compilation artifact) which can be shared amoung all projects. ChangeLog: * .gitignore: Ignore *.pyc file. Ok to apply? Thanks, diff --git a/.gitignore b/.gitignore index dc1bf3f..8e2e1e9 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ *.la *.lo *.o +*.pyc *.tmp .deps