2
votes
Why is python ordering my dictionary like so?
The only thing about dictionary ordering you can rely on is that the order will remain the same if there are no modifications to the dictionary; e.g., iterating over a dictionary twice without modi …
12
votes
How to convert an integer to the shortest url-safe string in Python?
This answer is similar in spirit to Douglas Leeder's, with the following changes:
It doesn't use actual Base64, so there's no padding characters
Instead of converting the …
1
vote
Python c-api and unicode strings
I suspect it has somthing to do with PyUnicode_AsEncodedString however that returns a PyObject so I'm not sure how to put that into my buffer...
The PyObject re …
14
votes
9
votes
Python: defaultdict became unmarshallable object in 2.6?
Marshal was deliberately changed to not support subclasses of built-in types. Marshal was never supposed to handl …
7
votes
Python: How to extract variable name of a dictionary entry?
To add what zenazn said:
But how can I turn that id back into a variable name?
The short answer is that you don't want really want to. If you think you …
4
votes
Python: How to extract variable name of a dictionary entry?
The trivial answer: instead of
WhichDict[WhichDict.keys()[0]][2]='newcomment'
use:
WhichDict.values()[0][2]='newcomment'
But usin …
1
vote
Best way to integrate Python and JavaScript?
There's a bridge based on JavaScriptCore (from WebKit), but it's pretty incomplete:
http://code.google.com/p/pyjscore/
…
6
votes
Is it safe to yield from within a “with” block in Python (and why)?
I don't really understand what conflict you're asking about, nor the problem with the example: it's fine to have two coexisting, independent handles to the same file.
One thing I didn't kno …
7
votes
Help with Python loop weirdness?
There are at least two bugs in your program:
curtime = time.strftime("%H")
...
for hour in range(int(s), int(f)):
nrt.append(hour)
# this is an inefficient synonym for
# nrt = r …
3
votes
How to distinguish between a function and a class method ?
To reemphasize a point which J.F. Sebastian alluded to, I want to be able to distinguish it when the function is being declared within the class (when the type I am getting is a func …
5
votes
Reversible version of compile() in Python
This is kind of a weird problem, and my initial reaction is that you might be better off doing something else entirely to accomplish whatever it is you're trying to do. But it's still an interesti …
11
votes
Securely Erasing Password in Memory (Python)
Python doesn't have that low of a level of control over memory. Accept it, and move on. The best you can do is to del password after calling mail.login …
6
votes
Easy way to check that variable is defined in python?
A compact way:
print myObject.myVar if hasattr(myObject, 'myVar') else 'not defined'
htw's way is more Pythonic, though.
hasattr() is differen …
20
votes
Some Basic Python Questions
First of all, those aren't Microsoft Word entities—they are UTF-8. You're converting them to HTML entities.
The Pythonic way to write something like:
chr(0 …
