From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5372 invoked by alias); 8 Oct 2010 21:35:21 -0000 Received: (qmail 5181 invoked by uid 22791); 8 Oct 2010 21:35:20 -0000 X-SWARE-Spam-Status: No, hits=-6.2 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,SPF_HELO_PASS,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 08 Oct 2010 21:35:16 +0000 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o98LYwqf024205 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 8 Oct 2010 17:34:59 -0400 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id o98LYvsj003471; Fri, 8 Oct 2010 17:34:58 -0400 Received: from opsy.redhat.com (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id o98LYuBm011082; Fri, 8 Oct 2010 17:34:57 -0400 Received: by opsy.redhat.com (Postfix, from userid 500) id 0EF033797CC; Fri, 8 Oct 2010 15:34:55 -0600 (MDT) From: Tom Tromey To: Doug Evans Cc: Joel Brobecker , gdb-patches@sourceware.org Subject: Re: Python coding style References: Date: Fri, 08 Oct 2010 21:35:00 -0000 In-Reply-To: (Doug Evans's message of "Fri, 8 Oct 2010 14:19:48 -0700") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2010-10/txt/msg00163.txt.bz2 >>>>> "Doug" == Doug Evans writes: Doug> I think Google's guide specifies more, and specifies the reasons more. Doug> We *could* reference both, and a blanket statement that X wins when Doug> there's a conflict. Doug> And then provide a supplement for gdb-specifics. Doug> Easier than writing our own from scratch. Works for me. Tom> * We shouldn't use the #!/usr/bin/env thing Doug> For my own education, why not? Doug> [So I can document it in the style guide.] I think that is there so that a given module can be run standalone. That won't work with a typical gdb-specific module, since they can't typically even be imported when using the plain python executable. Doug> We should provide an emacs py mode that specifies our style. We could check a .dir-locals.el file into the tree. I'm using this right now: ((tcl-mode . ((tcl-indent-level . 4) (tcl-continued-indent-level . 4))) (nil . ((bug-reference-url-format . "http://sourceware.org/bugzilla/show_bug.cgi?id=%s")))) Tom