The PEP contains the index of all Python Enhancement Proposals, known as PEPs.
2
votes
3answers
33 views
What to include in PyPi package?
I'm packaging my new python library for PyPi. The repository contains:
Sphinx documentation sources
Supplemental JavaScript library
Examples
Is it a good idea to include such things into a python ...
1
vote
2answers
51 views
Assignment to a mutable tuple component in python: a bug? a feature? [duplicate]
We know that Python tuples are immutable, good. When I attempt to change the reference of a tuple component I get an exception, as expected. What is not expected, is the component gets changed ...
0
votes
1answer
16 views
Why does importing from a module from the current directory only work when within that directory?
Background
I have a Python project with this directory structure:
py/:
db/ __init__.py run.py
py/db:
handle.py __init__.py util.py
The files are simple enough that I'm not sure I need to post ...
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
3answers
291 views
Python3 xrange lack hurts
Recently I started using Python3 and it's lack of xrange hurts.
Simple example:
1) Python2:
from time import time as t
def count():
st = t()
[x for x in xrange(10000000) if x%4 == 0]
et = t()
...
3
votes
2answers
66 views
Style of bitwise operators in Python
I can't find in PEPs information about style of bitwise operators (|, &), in this code in particular:
class MySplashScreen(wx.SplashScreen):
def __init__(self, parent=None):
...
0
votes
2answers
44 views
Is there a more elegant way to handle empty values in this scraper?
Now that I've figured out How do I strtotime in python? I'm wondering if there's a more elegant way to handle entries with empty dates, which return an error if I try to strptime() them.
...
0
votes
2answers
76 views
How to document a returned list in Python
I have a piece of code that scrapes a college timetable webpage and generates a list of lists of lists (of lists) like so:
[[[[start_time, end_time], [module_code, period_type, {period_number}], ...
8
votes
1answer
167 views
how to avoid python numeric literals beginning with “0” being treated as octal?
I am trying to write a small Python 2.x API to support fetching a
job by jobNumber, where jobNumber is provided as an integer.
Sometimes the users provide ajobNumber as an integer literal
beginning ...
-2
votes
1answer
70 views
python custom excepions: where?
Where can I write my custom exceptions?
Is there a file like execeptions.py in my software, or do I have to write them in the class they are related to?
Are there any PEPs about that?
1
vote
1answer
131 views
What does the PEP's status and structure mean?
What is the PEP status' structure and mean?
These days, I try to write a python2.7 interpreter.
But, I don't know why comparison operator <> arise in python 2.7. (It was not in python 3.0)
...
12
votes
1answer
381 views
Tool for automatically check docstring style according to PEP257
Tools like pep8 can check source code style, but they don't check if docstrings are fromatted according to pep257, pep287. Are there such tools?
Update
I decided to implement such a static analysis ...
0
votes
0answers
182 views
PEP handling with tigase server
Originally I was using an openfire backend for my web based chat client. But since its pep did not work with clustering, I had to migrate to tigase.
Chat works fine with tigase, I haven't gotten to ...
0
votes
2answers
220 views
Python and Django coding style (PEP)
I write code with Python using Django framework.
Now I have read about all these coding style advices, but encountered a vague thing.
In djangoproject section here ...
11
votes
5answers
1k views
Better to 'try' something and catch the exception or test if its possible first to avoid an exception?
Should I test if something is valid or just try to do it and catch the exception?
Is there any solid documentation saying that one way is preferred?
Is one way more pythonic?
For example, should ...
0
votes
2answers
53 views
PEP 354-like implementation of enums
At one point enums were considered by the Python developers to add to the language, but they dropped the feature. Is there some implementation of the PEP 354? — the specification seems pretty ...
2
votes
1answer
444 views
strophe.js PEP handler not attaching properly
I have been using a PEP plugin (found here: https://github.com/flosse/strophejs-plugins/blob/master/pep/strophe.pep.js) to connect to a users node however I am having some trouble. When my connected ...
14
votes
12answers
2k views
What PEP 8 guidelines do you ignore, and which ones do you stick to?
Over the years, the more Python I write, the more I find myself agreeing with most of the guidelines, though I consistently and intentionally break some for my own reasons.
I'd be curious to know ...
1
vote
3answers
176 views
doesPythonLikeCamels
Are Java style camelCase names good practice in Python. I know Capilized names should be reserved by convention for Class names. Methods should be small letters according to good style, or actually I ...
1
vote
1answer
118 views
Is there some implementation of PEP 3124
I'm searching for any PEP 3124 implemenation or development process. I'm not very familliar with mailing list, but it seems that sequence "3124" have not appeared in Python mailing list during last ...
6
votes
1answer
956 views
Which implementation of OrderedDict should be used in python2.6?
As some of you may know in python2.7/3.2 we'll get OrderedDict with PEP372 however one of the reason the PEP existed was because everyone did their own implementation and they were all sightly ...
5
votes
2answers
2k views
XEP-0080 User Location in Smack Library
I would like to create a simple XMPP client in java that shares his location (XEP-0080) with other clients.
I already know I can use the smack library for XMPP and that it supports PEP, which is ...
2
votes
7answers
158 views
how can I make a suggestion for a new feature in python
Suppose I think I have a great idea for some feature that should be in python's standard library.
Not something of the magnitude of a new keyword etc, just a suggestion for another decorator that ...
5
votes
5answers
602 views
Python: imports at the beginning of the main program & PEP 8
The PEP 8 recommends that modules be imported at the beginning of programs.
Now, I feel that importing some of them at the beginning of the main program (i.e., after if __name__ == '__main__') makes ...
29
votes
5answers
592 views
Which PEP's are must reads?
I'm a fairly strong Python coder, but too much of my style is a little haphazard, and I'm sure there are more Pythonic solutions to many problems than the ones I come up with. Which PEPs are essential ...