Describes coding conventions and style guidelines for the Python code
2
votes
4answers
87 views
In Python, what to return for no results, False or None?
I have a function which searches for results to a query. If there's no results what is recommended to return, False or None?
I suppose it's not that important but I'd like to follow best practice.
1
vote
1answer
64 views
How to PEP8 a long array of strings with comments
The line with a comment is wider than 80 characters:
MIDDLEWARE_CLASSES = (
'mydogslow.middleware.MyWatchdogMiddleware',
'gattlib.djangomiddleware.SetRemoteAddrFromXRealIP',
...
-1
votes
0answers
32 views
Assembly programming pass by value pep8
;Dmitriy Potemkin 816 Assignment 3
BR main
retVal: .Equate 2
printMes:STRO msg1,d
CHARO '\n',i
STRO msg2,d
CHARO '\n',i
...
2
votes
2answers
47 views
pep8 compliant deep dictionary access
What is the pep8 compliant way to do deep dictionary access?
dct = {
'long_key_name_one': {
'long_key_name_two': {
'long_key_name_three': {
...
1
vote
1answer
37 views
pep8 and using a constructor as a validator
this is pretty trivial, but it's bugging me and I thought I'd throw it out there.
the python netaddr library is great. I'm using it for a bunch of things, including IP address validation. To do ...
0
votes
4answers
75 views
How to format a python assert statement that complies with PEP8?
How does one format a long assert statement that complies with PEP8? Please ignore the contrived nature of my example.
def afunc(some_param_name):
assert isinstance(some_param_name, ...
2
votes
3answers
43 views
Preferred way to pep8 this line of code [closed]
I'm a bit new to forcing python code to be PEP8, what is the preferred way to PEP8 this line of code:
emissionprob = preprocessing.normalize(self.random_state.rand(self.n_components, self.n_symbols), ...
0
votes
1answer
71 views
pylint and pep8 not work with emacs24.2?
i try to intergrate pylint and pep8 into my emacs24.2, via some code like (require 'python-pep8) and (require 'python-pylint) in my .emacs.But i got the error as shown below:
Debugger entered--Lisp ...
3
votes
1answer
90 views
Python PEP 8: Blank lines at the beginning of a module
There is a question who treat about this but not talk about all the points I interested.
PEP 8 says about blank lines:
Separate top-level function and class definitions with two blank lines.
Then ...
0
votes
0answers
46 views
Eclipse Juno pep8 not working
I already have downloaded pep8 and set it as my code analysis tool and it works in projects with structure like this :
Project/
src/
project/
__init__.py
...
...
1
vote
2answers
82 views
What's the correct PEP8 practice for this long Python line?
How should I break down this line so it abides by PEP8?
assert (sum(map(lambda x: len(x),
(activities,apps,classes,users,verbs))) ==
Object.query
...
0
votes
1answer
45 views
how to have functions inside a module available to a class?
So I have the following case:
I have a module that has several function definitions. I want to create a class that has those functions available to it.
I just wanted to ask which way is best?
...
1
vote
1answer
98 views
Intellij IDEA 12: How to get PEP8 on the fly
It seems this is already supported in PyCharm 2.7
How can I get that for my IntelliJ IDEA 12? Currently for each file I do this
UPDATE
As mentioned by @CrazyCoder, after updating to IDEA 12.1, I ...
0
votes
1answer
140 views
Issue setting max line length for PEP8 in Eclipse
I am using Eclipse Juno on an Ubuntu x64 machine.
I would like to change the default max line length for the PyDev's PEP8, but I can't!
I go to Window/Preferences/PyDev/Editor/Code Analysis/pep8.py ...
0
votes
1answer
36 views
PEP8 E112 Indent Error when there shouldn't be?
I've read most that I can on the error and I can't see how it pertains to this class I'm writing.
# Copyright (C) 2013 Marco Ceppi <marco@ceppi.net>.
#
# This program is free software: you can ...
1
vote
3answers
101 views
Python PEP 8 docstring line length
I've recently begun figuring it would be a good idea to follow PEP 8. I made my editor display the 80-column mark and am now attempting to wrap lines to fit in it. My question is this. In PEP 8 it ...
4
votes
1answer
2k views
What is PEP8's E128: continuation line under-indented for visual indent?
Just opened a file with Sublime Text (with Sublime Linter) and noticed a PEP8 formatting error that I'd never seen before. Here's the text:
urlpatterns = patterns('',
url(r'^$', listing, ...
0
votes
2answers
206 views
autopep8 with vim
I have the following vimrc and just wonder how could I apply autopep8 to the vimrc?
Thank you in advance.
3
votes
2answers
84 views
Comparison with boolean numpy arrays VS PEP8 E712
PEP8 E712 requires that "comparison to True should be if cond is True: or if cond:".
But if I follow this PEP8 I get different/wrong results. Why?
In [1]: from pylab import *
In [2]: a = ...
2
votes
1answer
117 views
Block indenting/un-indenting python code in vim
I'm deciding to switch from tabs to spaces in my python code. Previously, if I wanted to indent/unindent a block of code in vim, I would use the >> or << commands.
I'm using the vimrc ...
0
votes
2answers
55 views
Run python script simply without adding directory to bashrc?
I am going away from tabs to spaces and would like to convert my current *.py files to this convention. It appears reindent.py is the recommended way of doing this.
After installing it on Ubuntu ...
0
votes
1answer
62 views
Eclipse integration with pep8 on mac os x lion
I am trying to set pep8 correctly in Eclipse for PyDev projects, everything seems to be configured properly - it was already configured with PyDev, but I also followed some tutorials found on web to ...
0
votes
0answers
41 views
How to write Pep8 Algorithm
How do I write a pseudo-code algorithm for the pep/8 computer that reads in three values and
writes out the result of subtracting the second value from the sum of the first and the
third values? Any ...
1
vote
5answers
84 views
Python and class attribute declarations [closed]
I have been told that declaring dynamic attributes within a classes scope is not the 'Python Way' but I do not understand why.
Could someone explain this to me or point me at some documentation as to ...
2
votes
1answer
98 views
How do I break a link in a rst docstring to satisfy pep8?
I'm using Sphinxdoc to generate api documentation, and I've run into a problem with pep8 conformance when writing a docstring.
As you can see below, the link to the OWASP site ends at column 105, far ...
2
votes
3answers
111 views
Is there a recommended format for multi-line imports?
I have read there are three ways for coding multi-line imports in python
With slashes:
from Tkinter import Tk, Frame, Button, Entry, Canvas, Text, \
LEFT, DISABLED, NORMAL, RIDGE, END
...
5
votes
1answer
511 views
Tool to convert Python code to be PEP8 compliant
I know there are tools which validate whether your Python code is compliant with PEP8, for example there is both an online service and a python module.
However, I cannot find a service or module ...
2
votes
4answers
473 views
Line is too long. Django PEP8 [closed]
PEP8 info:
models.py:10:80: E501 line too long (83 > 79 characters)
Models.py:
field = TreeForeignKey('self', null=True, blank=True, related_name='abcdefgh')
How to correctly write ...
0
votes
0answers
23 views
Python: spaces in expressions inside slice/bracket notation [duplicate]
Possible Duplicate:
style, formatting the slice operator
Looked trough PEP8 and not find anything about spaces in expressions inside bracket/slice notation.
For example:
my_list[i+n]
or
...
2
votes
3answers
87 views
PEP8, locals() and interpolation
Here is some code:
foo = "Bears"
"Lions, Tigers and %(foo)s" % locals()
My PEP8 linter (SublimeLinter) complains about this, because foo is "unreferenced". My question is whether PEP8 should count ...
9
votes
2answers
174 views
What is the naming convention for Python class references
What is the naming convention for a variable referencing a class in Python?
class MyClass(object):
pass
# which one is correct?
reference_to_class = MyClass
# or
ReferenceToClass = MyClass
...
0
votes
0answers
68 views
Eclipses code analysis doesn't work with git project
I have imported a git project into Eclipse
and I want to enable PyDev\Code Analysis\Pep8
but it doesn't seem to work...
I suppose it is because its a git project and not a project in the eclipse's ...
1
vote
3answers
199 views
Python alignment of assignments (style) [closed]
I really like following style standards, as those specified in PEP 8. I have a linter that checks it automatically, and definitely my code is much better because of that.
There is just one point in ...
0
votes
1answer
64 views
Wrapping python doctest results that are longer than 80 characters
I'm trying to keep my source code under the 80 character guideline width that PEP8 recommends, but can't figure out how to wrap my doctest which has results longer than 80 characters.
A noddy ...
4
votes
4answers
243 views
Most pythonic way of function with no return?
A I couldn't find anything concerning in the PEP 8. I'm interested in your thoughts about the most pythonic syntax of function which have no return?
Are there any reason to prevent functions without ...
0
votes
1answer
107 views
Pep8 Python3.3 Contradiction
Pep 8 has the following rules
Blank Lines
Separate top-level function and class definitions with two blank
lines.
Method definitions inside a class are separated by a single blank
...
0
votes
5answers
148 views
Usage of “”“ instead of ” on variables with long text inside [closed]
My question is quite simple.
When i write long sql senteces into a variable i use the following form:
sql = """ select a, b, c, d ,e,
from tables where a=a and b=b and c=c and so on..
...
2
votes
5answers
94 views
How to limit lenght of a complicated line in Python?
I'm formatting my code according to PEP8, but I have a little issue; this is it:
print ("DB Updated: " + datetime.datetime.fromtimestamp(int(stats_dict["db_update"])).strftime('%a %b %d %H:%M:%S ...
2
votes
2answers
135 views
Is there a better way to format this Python/Django code as valid PEP8? [closed]
I have code written both ways and I see flaws in both of them. Is there another way to write this or is one approach more "correct" than the other?
def functionOne(subscriber):
try:
...
1
vote
1answer
472 views
Convert Int to binary in Assembly (pep8) - An elegant approach
I am writing a program for one of my classes in assembly(pep8). The program is supposed to take in an integer between -32,768 and 32,767, and output its binary equivalent. The code below ...
18
votes
6answers
775 views
Is De Morgan's Law Pythonic?
Which of the following if statements is more Pythonic?
if not a and not b:
do_something
OR
if not ( a or b ):
do something
Its not predicate logic so I should use the Python key words ...
5
votes
3answers
126 views
Best approach to pass and handle arguments to function
After some reading, I found myself struggling with two different approaches to pass a list of arguments to a function. I read some indications. That's what I figured out so far:
Actual code:
file ...
2
votes
3answers
147 views
Split a long SQL query inside a variable
Following the PEP8 guidelines, what would be the best practice to format a very long sql wistatement into a variable?
An example bellow, of how im splitting the variable:
var= "some value"
query = ...
0
votes
0answers
668 views
How to configure SublimeLinter to enforce pep8 errors?
I am trying to get SublimeLinter to enforce pep8 errors as a plugin to sublime text 2. When I install it, it seems to immediately show a small list of errors, but not nearly the full list that I get ...
2
votes
3answers
166 views
Why did some very likely PEP8 aware developers capitalize their package names? (examples: Django, Sphinx, Fabric, … ) [closed]
PEP8 advises that module and package names have all-lowercase names. The majority of packages on PyPI seem to follow this rule. Yet there are some packages of clearly very capable and PEP8-aware ...
6
votes
1answer
548 views
How to fix: W602 deprecated form of raising exception
If I use pylint (via sublimerlinter) I get following warning message:
W602 deprecated form of raising exception
This I how I use exceptions in my code:
if CONDITION == True:
raise ValueError, ...
0
votes
0answers
126 views
Which style of increment / decrement is more Pythonic? [closed]
PEP 8 makes no mention of a preferred style for increment / decrement operations. To me it seems that if a special syntax is provided for a particular operation it should be used instead of other, ...
0
votes
0answers
115 views
Mercurial pretxncommit.pep8 hook not finding pep8 violations
If I run pep8 over a file in my Mercurial repository it will list all the pep8 violations.
I've installed hghooks and set up the pretxncommit.pep8 hook, but it never reports any violations when I ...
1
vote
2answers
187 views
python import at same folder
If import an file in another file in the same folder.
file structure:
.
├── b
│ ├── c.py
│ ├── d.py
│ └── __init__.py
└── __init__.py
in d.py:
import b.c
print "import successfully"
...
7
votes
2answers
5k views
How to properly use python's isinstance() to check if a variable is a number?
I found some old Python code that was doing something like:
if type(var) is type(1):
...
As expected, pep8 complains about this recommending usage of isinstance().
Now, the problem is that the ...
