Tagged Questions

2
votes
2answers
97 views

How to modify the Python ‘default’ dictionary so that it always returns a default value

I'm using all of them to print the names of assigned IANA values in a packet. So all of the dictionaries have the same default value "RESERVED". I don't want to use d.get(key,default) but access …
0
votes
2answers
259 views

SHA256 hash in Python 2.4

Hi, Is there a way I can calculate a SHA256 hash in Python 2.4 ? (I emphasize: Python 2.4) I know how to do it in Python 2.5 but unfortunately it's not available on my server and an upgrade will not …
2
votes
9answers
452 views

In Python 2.4, how can I strip out characters after ‘;’?

Hi, Let's say I'm parsing a file, which uses ; as the comment character. I don't want to parse comments. So if I a line looks like this: example.com. 600 IN MX 8 …
1
vote
1answer
91 views

How to set smtplib sending timeout in python 2.4?

I'm having problems with smtplib tying up my program when email sending fails, because a timeout is never raised. The server I'm using does not and will never have python greater than 2.4, so I can't …
0
votes
1answer
70 views

Is there a library which handles the parsing of BIND zone files in Python?

Hi, This is related to a similar question about BIND, but in this case I'm trying to see if there's any easy way to parse various zone files into a dictionary, list, or some other manageable data …
0
votes
3answers
369 views

Sending email using google apps SMTP server in Python 2.4

I'm having difficulty getting python 2.4 to connect to gmail's smtp server. My below script doesn't ever get past "connection". I realise there is an SMTP_SSL class in later versions of python and it …
6
votes
15answers
827 views

Python idiom to return first item or None

I'm sure there's a simpler way of doing this that's just not occurring to me. I'm calling a bunch of methods that return a list. The list may be empty. If the list is non-empty, I want to return …
0
votes
1answer
108 views

Help with subprocess.call on a Windows machine

I am trying to modify a trac plugin that allows downloading of wiki pages to word documents. pagetodoc.py throws an exception on this line: # Call the subprocess using convenience method retval = …