0
votes
Validating Python Arguments in Subclasses
You might want to play around with the inspect module. It will let you enumerate superclasses, argument lists, and other fun stuff. It seems that you might want to inspect the argument …
4
votes
What are the important language features (idioms) of Python to learn early on
Decorators get my vote. Where else can you write something like:
def trace(num_args=0):
def wrapper(func):
def new_f(*a,**k):
print_args = ''
if num_args > 0:
…
0
votes
python convert microsoft office docs to plain text on linux
I've had some success at using XSLT to process the XML-based office files into something usable in the past. It's not necessarily a python-based solution, but it does get the job done.
…
1
vote
How do I modify sys.path from .htaccess to allow mod_python to see Django?
Is the PythonPath setting what you are looking for? I haven't tried it with Django, but I would assume …
1
vote
logging in mod_python/apache
I've never done it, but it seems that writing a subclass of logging.Handler shouldn't be that hard. So …
0
votes
Launch a webpage on a Firefox (win) tab using Python
You might want to try:
import os
os.spawnl(os.P_NOWAIT, r'C:\Program Files\Mozilla Firefox\Firefox.exe',
r'FireFox', '-new-tab', 'http://www.google.com/')
…
0
votes
dnspython and python objects
I haven't looked at dns.resolver as of yet - I just added it to the ever-growing list of things to check out. I would guess that rdata refers to the resource record type s …
1
vote
exec statement with/without prior compile
There are a few differences that I see. Firstly, compile has slightly better semantics in th …
0
votes
Python logging incompatibilty between 2.5 and 2.6
Interesting... I played a little in the console and it looks like the second call to logging.config.fileConfig is mucking things up. Not sure why this is though... Here's a transcript …
1
vote
Setting the flags field of the IP header
I'm guessing that the flags field is actually set to 2 = b010 instead of 4 - flags equal to 4 is an invalid IP packet. Remember that flags is a 3 bit value in the …
0
votes
Install pyCurl in ActivePython-2.6?
It looks like curl-config isn't in your path. Try running it from the command line and adjust the PATH environment variable as needed so that Python can find it.
…
1
vote
How do you call Python code from C code?
I haven't used an IPC approach for Python<->C communication but it should work pretty well. I would have the C program do a standard fork-exec and use redirected stdin and std …
7
votes
1
vote
Making a variable non-inheritable in python
The only approach that I can add is to use hasattr(self.__class__, 'SIZE') in the implementation of getsize() and toss an exception if the attribute is not found. Somethin …
1
vote
What is the multiplatform alternative to subprocess.getstatusoutput (older commands.setstatusoutput() from Python?
I wouldn't really consider this multiplatform, but you can use subprocess.Popen:
import subprocess
pipe = subprocess.Popen('dir', stdout=subprocess.PIPE, shell …
