Path: csiph.com!usenet.pasdenom.info!dedibox.gegeweb.org!gegeweb.eu!nntpfeed.proxad.net!proxad.net!feeder1-2.proxad.net!usenet-fr.net!nerim.net!novso.com!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.005 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'configure': 0.04; 'builtin': 0.07; 'undefined': 0.07; 'python': 0.09; 'imports': 0.09; 'cc:addr:python-list': 0.10; 'away).': 0.16; 'subject:Text': 0.16; 'wrote:': 0.17; 'variables': 0.17; 'variable': 0.20; 'received:209.85.214.174': 0.21; 'cc:2**0': 0.23; 'cc:no real name:2**0': 0.24; 'cc:addr:python.org': 0.25; 'header:In-Reply- To:1': 0.25; '(which': 0.26; 'separate': 0.27; 'message- id:@mail.gmail.com': 0.27; 'e.g.': 0.30; 'mode': 0.30; 'feedback': 0.30; 'curious': 0.33; 'received:google.com': 0.34; 'received:209.85': 0.35; 'useful': 0.36; 'received:209': 0.37; 'subject:: ': 0.38; 'received:209.85.214': 0.39; 'header:Received:5': 0.40; 'your': 0.60; 'july': 0.60; 'special': 0.73; 'rusi': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=Qk8N0BmREY5kY3oMGu5bPMSnx9X7jo6mUyyftslwUVA=; b=jzeVpINtBLxaGLGtIz82XkBEHcjHf+WRRmy5VdsA6uomOaB94ZkCL/SS6QM8bmBhBa oNBGz6f97gNYH9inkeRIOAmUS8/sZHN2I+Y4r1TR5QeWMd/fen4Td/mf1E82+YryV9K0 h8BluIDvPQJLCL2mDGxOEVRpuBiWjEYpirSVOYly9TJrmwmS/OFGClvDtdUzXz/Wua0V cdtanf58mORiG6a1h6THcs9YqRb4LjDRynTxH6LCZv8hD8W94+9tIKmb5VtJFY0B1KUE LENmz1iKrmw7xCVQ+VXQNhdAenZVtcxvctKVtA7lJuCKnxTKjluVlxOicH+BgKt9qBwd t/kQ== MIME-Version: 1.0 In-Reply-To: <6a2a69db-8275-4bbd-b4bb-0d94cb6118a6@re8g2000pbc.googlegroups.com> References: <87pq7fqhlh.fsf@benfinney.id.au> <6a2a69db-8275-4bbd-b4bb-0d94cb6118a6@re8g2000pbc.googlegroups.com> Date: Sun, 29 Jul 2012 15:24:14 +0100 Subject: Re: OT: Text editors From: Arnaud Delobelle To: rusi Content-Type: text/plain; charset=UTF-8 Cc: python-list@python.org X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 15 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1343571857 news.xs4all.nl 6976 [2001:888:2000:d::a6]:37258 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:26190 On 29 July 2012 06:36, rusi wrote: > Just curious about your emacs+python usage. > Do you use the emacs builtin python mode or the separate python-mode? > Do you use pdb? > Any other special setups? One thing that I find very useful is to configure flymake to use pyflakes. Very useful to get feedback on unused imports / unused variables / undefined variables (which means you spot typos on variable names straight away). For instructions, see e.g. http://www.plope.com/Members/chrism/flymake-mode -- Arnaud