Tagged Questions
For issues relating to development in Python, version 2.4.
14
votes
2answers
602 views
Evil in the python decimal / float
I have a large amount of python code that tries to handle numbers with 4 decimal precision and I am stuck with python 2.4 for many reasons. The code does very simplistic math (its a credit management ...
14
votes
14answers
5k 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 ...
8
votes
1answer
2k views
JSON module for python 2.4?
I'm accustomed to doing import json in Python 2.6, however I now need to write some code for Python 2.4. Is there a JSON library with a similar interface that is available for Python 2.4?
7
votes
1answer
335 views
Avoiding accidentally catching KeyboardInterrupt and SystemExit in Python 2.4
In Python scripts, there are many cases where a keyboard interrupt (Ctrl-C) fails to kill the process because of a bare except clause somewhere in the code:
try:
foo()
except:
bar()
The ...
5
votes
2answers
225 views
Count warnings in Python 2.4
I've got some tests that need to count the number of warnings raised by a function. In Python 2.6 this is simple, using
with warnings.catch_warnings(record=True) as warn:
...
...
4
votes
3answers
111 views
Change in Python built in round() function between 2.4 and 2.7
Has the built in round() function in Python changed between 2.4 and 2.7?
Python 2.4:
Python 2.4.6 (#1, Feb 12 2009, 14:52:44)
[GCC 3.4.6 20060404 (Red Hat 3.4.6-8)] on linux2
Type "help", ...
4
votes
2answers
164 views
How to signal alarm in python 2.4 after 0.5 seconds
I want to timeout a particular piece of python code after in runs for 0.5 seconds. So I intend to raise an exception/signal after 0.5 seconds, and handle it gracefully and continue with rest of code.
...
4
votes
3answers
110 views
python2.4.3: format bug?
Here is an example:
>>> "%.2f" % 0.355
'0.35'
>>> "%.2f" % (float('0.00355') *100)
'0.36'
Why they give different result?
4
votes
3answers
2k views
SHA256 hash in Python 2.4
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 be ...
3
votes
6answers
59 views
Interpreting Strings as Other Data Types in Python
I'm reading a file into python 2.4 that's structured like this:
field1: 7
field2: "Hello, world!"
field3: 6.2
The idea is to parse it into a dictionary that takes fieldfoo as the key and whatever ...
3
votes
1answer
86 views
Python ConfigParser interpolation from foreign section
With Python ConfigParser, is it possible to use interpolation across foreign sections? My mind seems to tell me I've seen that it's possible somewhere, but I can't find it when searching.
This ...
3
votes
2answers
426 views
What can be used instead of parse_qs function
I have the following code for parsing youtube feed and returning youtube movie id. How can I rewrite this to be python 2.4 compatible which I suppose doesn't support parse_qs function ?
YTSearchFeed ...
3
votes
8answers
255 views
Smart filter with python
Hi
I need filter out all rows that don't contain symbols from huge "necessary" list, example code:
def any_it(iterable):
for element in iterable:
if element: return True
return ...
3
votes
2answers
1k 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 ...
3
votes
8answers
1k views
In Python 2.4, how can I strip out characters after ';'?
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 ...
2
votes
3answers
113 views
Python imports being overridden by the standard library (Python 2.4)
I have a python package that I'm writing and I'm having an issue where the standard library is being imported instead of my files because of name clashes.
For example, a file structure like below:
...
2
votes
3answers
127 views
How should I prevent abuse when using web.py's web.database?
I'm writing a quick web.py app and take data from web.input...
import web
urls = (
'/', 'something',
)
app = web.application(urls, globals())
db = web.database(dbn='postgres', db='database', ...
2
votes
2answers
79 views
Pythonic way to emulate itertools.product in python 2.4
I have a python 3 script that uses itertools.product, but I need to be able to run it on a machine that only has python 2.4 installed. Since itertools.product is new in python 2.6, I no longer have ...
2
votes
5answers
94 views
Future Development in Python 2.4
I'm starting a new python project at work that is targeted primarily at RHEL5 machines that may be upgraded to RHEL6 in couple years. Given that python 2.4 is standard on RHEL5 and the system admins ...
2
votes
3answers
94 views
reusable function: substituting the values returned by another function
Below is the snippet: I'm parsing job log and the output is the formatted result.
def job_history(f):
def get_value(j,n):
return j[n].split('=')[1]
lines = read_file(f)
for line ...
2
votes
1answer
139 views
Valgrind on Python2.4 : Huge amount of memory 'possibly lost'
I have written some code which works without errors. The code uses MySQLdb for (frequent) database access and uses 4 different databases. Also a couple of log files are generated and logging module is ...
2
votes
3answers
989 views
XML to/from a Python dictionary
I need to use Python 2.4.4 to convert XML to and from a Python dictionary. All I need are the node names and values, I'm not worried about attributes because the XML I'm parsing doesn't have any. I ...
2
votes
1answer
490 views
python get time in minutes
import datetime
start = datetime.datetime(2009, 1, 31)
end = datetime.datetime(2009, 2, 1)
print end-start
>>1 day, 0:00:00//output
How to get the output in minutes
Thanks,
2
votes
2answers
965 views
Workaround for python 2.4's yield not allowed in try block with finally clause
I'm stuck on python2.4, so I can't use a finally clause with generators or yield. Is there any way to work around this?
I can't find any mentions of how to work around this limitation in python 2.4, ...
2
votes
1answer
638 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 ...
2
votes
3answers
2k 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 ...
1
vote
1answer
58 views
Multipart binary file POST in python 2.4
I already checked a lot of code snippets but i could not get how to post multipart both text and binary files in single request with only python 2.4? Here in comments mentioned something about BytesIO ...
1
vote
6answers
53 views
How to enumerate through list with the first “index” reported as 1? (Python 2.4)
I need my counter to start at 1. Right now I have
for(counter, file) in enumerate(files):
counter += 1
//do stuff with file and counter
But there must be a better way, in Python v2.4
1
vote
4answers
91 views
Python Strings with Specific WIdth
I have been having a bit of trouble looking up a good explanation on how to do this so pointing me to the right direction would be helpful for the following problem.
I need to have a header printed ...
1
vote
3answers
96 views
Python's foreach backwards
Does python have a means of doing foreach backwards? I'm hoping to do a filter() (or list comprehension) and reverse a list at the same time, so that I can avoid doing it separately (which I suspect ...
1
vote
2answers
50 views
Extending __str__() rather than replacing it
I want to extend the __str__() method of my object. The str(obj) currently reads:
<mymodule.Test object at 0x2b1f5098f2d0>
I like the address as a unique identifier, but I want to add some ...
1
vote
1answer
39 views
Problems with python 2.4 and 2.4.4 in struct.unpack and win/lin
i'm coding on a Linux debian machine with python 2.4.
My neighbour with Windows XP and python 2.4.4
He can run this code:
w1, w2, w3 = unpack("LLL", pack("LLHH", localtime, ipddr, counter, aid))
...
1
vote
2answers
67 views
Efficient writing to a Compact Flash in python
I'm writing a gui to do perform a glorified 'dd'.
I could just subprocess to 'dd' but I thought I might as well use python's open()/read()/write() if I can as it'll let me display progress much more ...
1
vote
3answers
235 views
calculating the next day from a “YYYYMMDD” formated string
How can I calculate the next day from a string like 20110531 in the same YYYYMMDD format? In this particular case, I like to have 20110601 as the result. Calculating "tomorrow" or next day in static ...
1
vote
5answers
545 views
Getting the maximum value from dictionary
I'm facing problem with this. I have 10,000 rows in my dictionary and this is one of the rows
Example: A (8) C (4) G (48419) T (2) when printed out
I'd like to get 'G' as an answer, since it has the ...
1
vote
3answers
153 views
Python, how can I print the current datetime on the same line as a text message?
First experiences with Python here, I want to be able to print out some text with the current time/date as the first item on the line.
This is what I've been able to cook up so far, but it appears ...
1
vote
3answers
219 views
Symlink Exploits in Python
While reading about shell scripts and temporary file handling, I came across Symlink Exploits. http://www.linuxsecurity.com/content/view/115462/151/ is the basic idea. I wondered if Python open() ...
1
vote
3answers
256 views
Multiple port scans using external tool, subprocess.Popen and threads
I am using a port scanner to scan my subnet. The port scanner unfortunately can scan one port of only one host at a time. Also the scanner has a 1 sec timeout for unreachable hosts. The scanner(being ...
1
vote
0answers
285 views
What HTML parser to choose and why BeautifulSoup doesn't work?
I need to parse a HTML-page with windows-1251 charset (it's in russian).
The problem is that it is the web application and I have to use Python 2.4 without any opportunity to install modules on ...
1
vote
3answers
333 views
Pickling array.array in 2.4 using cPickle
I am working on a project built on python 2.4 (It is an embedded python project, so I don't have a choice on the version of python used). Throughout the application, we use array.array to store data.
...
0
votes
1answer
49 views
Doctests that contain string literals
I have a unit test that I'd like to write for a function that takes XML as a string. It's a doctest and I'd like the XML in-line with the tests. Since the XML is multi-line, I tried a string literal ...
0
votes
0answers
35 views
python 2.4 urllib2 - handling refresh in the response
I am trying to retrieve the following url
http://videomasti.net//?p=747
Here is the response I get inside xbmc addon(which uses python 2.4)
Response info Date: Sun, 11 Dec 2011 14:46:27 GMT
...
0
votes
2answers
146 views
How to unzip a zip file with Python 2.4?
Fairly new to Python and having a hard time figuring out how to unzip a zip file with 2.4.
extract() is not included in 2.4. I'm restricted to using 2.4.4 on my server.
Can someone give a simple ...
0
votes
1answer
108 views
How to raise custom dictionary KeyError message
I'm writing some scripts that will be used by non-python users. I have a Config class that has dictionaries and I'd like to be able to raise a custom exception for KeyError. Is there an elegant way ...
0
votes
1answer
114 views
Is this bad practice?
In this piece of code, if I match the given pattern on the line, I replace the line by a self-built string. Is this actually good practice? It looks a little bit like reusing the variable line for ...
0
votes
2answers
110 views
Python get start and end date of the week
How to get the start date and end date of a week, and also if the following dates below comes under a particular range of start and end dates of the week how to show only those weeks start and end ...
0
votes
0answers
120 views
Python2.4 and python2.5 in Fedora10
I'm working with a Fedora10 64bits distribution, which has installed python2.4 and pythosn2.5.
I am trying to install a python module for python2.4, but when I try to execute:
python2.4 setup.py ...
0
votes
0answers
9 views
amara for python2.4 and Fedora10
Please, could anyone point out a link to download the rpm file of a proper version on amara XML toolkit for python2.4 in Fedora10 distribtion?
0
votes
1answer
135 views
conditional command-line arguments [ possibly using getopt()?? ]
This is related to my previous post here. Running the actual script, I output the result like this:
[root@test_vm /]# torque_history.py -m 4
Job Id User Real User Start Date S ...
0
votes
6answers
350 views
Find minimum element in a dictionary of dictionaries
I need to find what element of apple has the minimum size.
Tnx for all answers. But there is one problem: I use Python 2.4.2 (I can't change it) and function min haven't key arg. Yes, I need key of ...