Describes coding conventions and style guidelines for the Python code

learn more… | top users | synonyms

1
vote
1answer
15 views

How to set SublimeLinter's pep8_ignore for project?

I tried: { "settings": { "SublimeLinter": { "pep8_ignore": ["W191"] } } } But it doesn't work.
1
vote
1answer
30 views

python pep8 indentation jenkins

I am getting a pep8 markup error on this piece of code.(see below). urlpatterns = patterns('', (r'', include(v1_api.urls)), url( ...
2
votes
1answer
25 views

Why unittest2 methods are camelCase if names_with_underscores are prefered?

Here's the section of PEP8 that describes how function names should be: Function names should be lowercase, with words separated by underscores as necessary to improve readability. ...
1
vote
1answer
44 views

Should I underscore prefix all non-API members in Python? [closed]

So the underscore prefix for methods and attributes is rarely used in Python. But it is very convenient to make clear which methods are part of the API. This has the advantage of being self ...
0
votes
2answers
66 views

How to shorten long “and” statements? [duplicate]

I have a looong statement of "and"'s, for example: if this == that and this == that and this == that: do this How to correctly break such statements into separate lines, to comply with PEP-8?
1
vote
2answers
30 views

disable ropemacs in emacs

I would like to get pep8 formating in emacs and so I added to my .emacs file: (when (load "flymake" t) (defun flymake-pylint-init () (let* ((temp-file (flymake-init-create-temp-buffer-copy ...
-1
votes
1answer
22 views

PEP 8: Function and method arguments naming convention

From PEP 8 section of Function and method arguments : Always use self for the first argument to instance methods. Always use cls for the first argument to class methods. If a function ...
0
votes
1answer
23 views

How to use CHARI in PEP/8 to go one number to another

I have to write a program that will calculate the average of several numbers in/with Pep/8. My main problem now is he didn't let us use DECI and we have to use CHARI but I can't make it go from ...
2
votes
2answers
48 views

PEP 8: library specific imports?

According to PEP 8 guidelines, "library specific imports" should come last at the import list. But what does this exactly mean?
2
votes
4answers
94 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
87 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', ...
2
votes
2answers
50 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
39 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
84 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
49 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
101 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
111 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
57 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
101 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
147 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
179 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
39 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
110 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 ...
8
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
257 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
93 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
137 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
64 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
70 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
42 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
94 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
116 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
150 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
697 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
613 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
260 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
70 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
237 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
78 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
247 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
112 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
149 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
96 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
527 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 ...
19
votes
6answers
829 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
131 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 ...

1 2 3