Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
python-pep8.el
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  2 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
cburroughs  
View profile  
 More options Feb 16 2010, 9:34 am
From: cburroughs <chris.burrou...@gmail.com>
Date: Tue, 16 Feb 2010 06:34:51 -0800 (PST)
Local: Tues, Feb 16 2010 9:34 am
Subject: python-pep8.el
http://atomized.org/2010/02/pep8-pylint-in-emacs/

I thought this use of pep8 would be of interest to the group.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Reinout van Rees  
View profile  
 More options Feb 16 2010, 10:38 am
From: Reinout van Rees <rein...@vanrees.org>
Date: Tue, 16 Feb 2010 16:38:52 +0100
Local: Tues, Feb 16 2010 10:38 am
Subject: Re: python-pep8.el
On 02/16/2010 03:34 PM, cburroughs wrote:

> http://atomized.org/2010/02/pep8-pylint-in-emacs/

> I thought this use of pep8 would be of interest to the group.

I'm using pyflakes and pep8. I've had much more success getting pyflakes
to run than pylint.  Pyflakes' advantage is that it doesn't need to
import your code.

http://reinout.vanrees.org/weblog/2009/09/28/fixing-up-code.html

Emacs' ctrl-c ctrl-w is by default bound to pychecker. I modified that
to run pychecker.sh:

#!/bin/bash
pyflakes $1
echo "## pyflakes above, pep8 below ##"
pep8 --repeat $1

Great way to get a good clickable error report that goes right to the
offending line in your python code (probably just like in the post you
linked).

Reinout

--
Reinout van Rees - rein...@vanrees.org - http://reinout.vanrees.org
Programmer at http://www.nelen-schuurmans.nl
"Military engineers build missiles. Civil engineers build targets"


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »