0
votes
How do I persist to disk a temporary file using Python?
Starting from python 2.6 you can also use NamedTemporaryFile with the delete= option set to False. This way the temporary file will be accessible, even after you close it. …
3
votes
Ignore case in Python strings
I cannot yet edit anything on this site, so I have to post another answer here...
The proposed (and accepted) solution of calling into clib is quite stupid. Here is a simple benchmark:
…
9
votes
Why does Python pep-8 strongly recommend spaces over tabs for indentation?
The answer is given right there in the PEP. I quote:
The most popular way of indenting Python is with spaces only.
What other underlyin …
0
votes
Character reading from file in Python
Leaving aside the fact that your text file is broken (U+2018 is a left quotation mark, not an apostrophe): iconv can be used to transliterate unicode characters to ascii.
You'll have to goo …
4
votes
Django: How do I create a generic url routing to views?
Unless you have a really huge number of views, writing them down explicitly is not too bad, from a style perspective.
You can shorten your example, though, by using the prefix argu …
2
votes
What is the difference between Python’s re.search and re.match?
Have you had a look at the documentation?
Python offers two different primitive oper …
5
votes
What do i need to import to gain access to my models?
If you use the shell argument to the manage.py script in your project directory, you don't have to import the settings manually:
$ cd mysite/
$ ./manage.py …
12
votes
Is there a function in Python to print all the current properties and values of an object?
You are really mixing together two different things.
Use dir() or the inspect module to get what you are interested in (I use __builtins__ as an examp …
1
vote
How to make Apache/mod_python process collect its zombies?
File a bug report.
EDIT: I'm serious. Leaving zombies behind is a bug, and there is almost certainly nothing you can do from within Python.
Upgrade to the latest versions, look for …
6
votes
Given a list of variable names in Python, how do I a create a dictionary with the variable names as keys (to the variables’ values)?
Forget filtering locals()! The dictionary you give to the formatting string is allowed to contain unused keys:
>>> name = 'foo'
>>> zip = 123
>> …
2
votes
Unexpected list comprehension behaviour in Python.
Mind if i refactor this a bit?
def digit(n):
for i in itertools.count():
yield (i%n+1, not i%n)
But actually you don't need that one, if you implement …
3
votes
4
votes
How to import a python file in python script more than once
You most probably should not use import for what you are trying to do.
Without further information I can only guess, but you should move the code in the module you import from the top level …
4
votes
When is “self” required?
You use self.attribute to reference an attribute of your current instance.
You use wx.Frame.__init__() to reference a method of the parent class.
You don't …
2
votes
Use only some parts of django?
There are of course other projects out there that specifically implement single parts of django. TurboGears for example is a collection of severa …
