Tagged Questions
The pep tag has no wiki summary.
26
votes
5answers
438 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 ...
7
votes
9answers
585 views
What PEP 8 guidelines do you ignore, and which ones do you stick to?
The title says most of it really :)
Over the years, the more Python I write, the more I find myself agreeing with most of the guidelines, some though I consistently and intentionally break for my own ...
6
votes
1answer
424 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
5answers
192 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 ...
4
votes
5answers
375 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 ...
2
votes
2answers
1k 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
152 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 ...
1
vote
1answer
211 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 ...
1
vote
3answers
154 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
94 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 ...
0
votes
0answers
26 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
54 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 ...
0
votes
2answers
37 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 ...