For issues relating to development in Python, version 2.4.

learn more… | top users | synonyms

1
vote
1answer
32 views

Trouble porting over python-2.7 curses to python-2.4

I wrote my python code at home for 2.7, but now I'm trying to fix it to run on 2.4 here at work. The first is hline does not work for me. I have stdscr.hline(0,0,'=',5) but it only prints out ...
2
votes
1answer
32 views

Find changed or new rows in two lists of lists

I have two lists of lists which I call old_rows and new_rows. Each row is a list of exactly 30 items. There may be a very large (and unknown) number of rows in each list. The two lists may contain ...
0
votes
0answers
30 views

Python/Myro: Error in atexit._run_exitfuncs

My beginners-level Python course uses Python 2.4 and Myro, the latter of which has caused me nothing but trouble. At this point in the class I can't even run the code I've written nine times out of ...
0
votes
1answer
45 views

convert float values in dictionary into two decimal places

Note, using Python 2.4. Here is a dictionary I have called d_ourbook: {'130405C00465000': [[8.6999999999999993, 8.9000000000000004, 0.50749999999999995, 32.810000000000002, -141.1575]]} The value ...
0
votes
1answer
72 views

matching and unmatched lines from two large data sets

I am using Python 2.4 and am pretty new at Python, programming in general and regular expressions. I have a large module that currently outputs two separate streams(or datasets/files) of lines, ...
1
vote
1answer
94 views

Determine python version in Easy Install

I wan't to install 'twisted' module on CentOS 5.9 . There is python 2.4 by default on it and because of other program dependencies I can't remove python 2.4 . I have installed Python 2.7 by yum ...
0
votes
1answer
24 views

Handling months in python datetimes

I have a function which gets the start of the month before the datetime provided: def get_start_of_previous_month(dt): ''' Return the datetime corresponding to the start of the month ...
0
votes
3answers
91 views

Return All Matching Lines in a Logfile

I need some help with looping, or a better way to go about this. The answer may be obvious, but I'm new here and feel a mental block right now: I have a log file that looks like this and I am trying ...
1
vote
5answers
103 views

Loop within loop python

I have a log file with several hundred thousand lines. I am looping through these lines to find any line with some specific text, for example: !!event!!. Then, once an !!event!! line is found, I ...
0
votes
1answer
77 views

SyntaxError: invalid syntax in mysqlDb python

I am trying to test the following with python but I get the invalid syntax error: db = None try: db = mdb.connect("localhost","user","pass","dbName") with db: cur = db.cursor() ...
0
votes
0answers
222 views

Migration of python and QT GUI based application to HTML based app. Need suggestion [closed]

I have a plan to do a POC for HTML5 based application for my own application. In this current application is GUI based application. GUI and actions are written in QT (pyQT), and business logic is ...
1
vote
0answers
203 views

PIL selftest.py fails for Centos 6 64-bit Error: Jpeg Decoder not Available

I am having difficulty on my server trying to get the selftest.py to run successfully. I am trying to get PIL 1.1.7 working with Python 2.4.4 (Are the versions compatible?) When the install is ...
0
votes
2answers
168 views

Python try/except not working

Trying to get the try/except statement working but having problems. This code will take a txt file and copy the file that is in location row 0 to location of row 1. It works however if i change one ...
0
votes
1answer
75 views

Python2.7 searches the unwanted directory when importing modules

I tried to use Python 2.7 to import numpy. Configuration that may cause the problem Two Python interpreter installed on my computer, Python 2.4 and 2.7 two copies of numpy installed, one in my home ...
0
votes
1answer
48 views

python setting columns as value

I have a txt file with roughly 1000 lines, i want to setup colum 1 as the soruce destination and column 2 as the transfer to destination and using shutil.copyfile(src, dst) copy these files. I have ...
0
votes
2answers
55 views

python function list indices must be integers error

The .txt file contains 3 fields comma (,) seperated text, numbers and some special characters, running just a for row in sortedlist: print row[1] for example works fine. import csv import operator ...
0
votes
1answer
43 views

Using Python to extract data if a terminating line is present

I'm currently trying to extract some data between 2 lines of an input file using Python. the infile is set up such that there is a line -START- where I need the next 10 lines of code if and only if ...
0
votes
1answer
38 views

Legacy Zope dynamic loading error with MySQL

I am in the process of moving an old installation of Zope 2 to a new Mac OS 10.8 Server. Unfortunately, our server requires Python 2.4 to run, so I have installed the MacPorts version. The server ...
2
votes
2answers
197 views

Differences between python 2.7 and 2.4 produce an Error

I've been posting on here for a while trying to find the reason for my invisible python problems. Locally, my script runs fine, but when I upload it, it only executes halfway. My python script ...
1
vote
5answers
140 views

List Comprehension in 2.4

Am i right to believe that you can only use else in list comprehensions within python 2.5 and higher ? i.e what would be the best way to achieve the following in 2.4 ? print [x if x != "3" else "1" ...
0
votes
1answer
93 views

Access to one variable in multiple files in Python?

I have a package containing many .py files. I want to: have a debug flag, which I can access in each file. (Actually write it in one file, read it in all other files) have a version number in each ...
2
votes
2answers
100 views

Shared Object for .pyc-files in Python?

Edited (to clarify the question): I have a python 2.4 script with a package including many .py-files. .Pyc files are created automatically. Can I make just one single .pyc-file out of the many ...
1
vote
1answer
59 views

How would I complete number 2 on the following check list and/or just finish the program?

Here's the problem I'm working on: Assume that the developers of Myro are developing a new black box function called traveler(String str ) that moves a robot in a specific direction (i.e., ...
0
votes
2answers
529 views

python subprocess poll() is not returning None even if Popen is still running

I have a python script that executes linux commands with timeout using a while loop and sleep like below fout = tempfile.TemporaryFile() try: p = subprocess.Popen(["/bin/bash","-c", ...
0
votes
2answers
78 views

I keep getting ValueError: frequency must be in 37 thru 32767 on Python with Winsound

This is the code I have: import winsound from myro import * def main(): HftM1 = makeSong("REST 1; REST 1; REST 1; REST 1; REST 1; REST 1; REST 1; REST 1; D4 1/6; F4 1/6; D5 2/3; D4 1/6; F4 1/6; ...
0
votes
1answer
96 views

python sed not working

Why is it so hard to do sed like operation in Python? cat temp$$ | sed '/ENTRY/d' | sed '/VERSION/d' > temp$$1 The following attempt simply doesn't work (instead of writing to file I'm printing ...
0
votes
2answers
186 views

Compute bill for a super market

Below is the code to compute the bill for the supermarket. Everything is ok but the issue is that I am told that this solution would not work if the input is only apple. I do believe that the value ...
1
vote
1answer
187 views

How do you play two different song files on python at the same time?

I'm trying to play song1 and song2 (the commented out one) at the same time, but I don't know how to do that using myro or winsound or whatever it is. Someone suggested using threading, but I'm not ...
0
votes
1answer
273 views

Cannot install ipython on rhel 5.8 using pip

I am trying to install ipython on my rhel 5.8 server but it gives the below error. └──> sudo pip install ipython [sudo] password for ronak: Downloading/unpacking ipython Downloading ...
0
votes
4answers
126 views

Handling NoneType in len() while in a Python lambda expression?

From what I understand, Python lambda's only allow expressions, not statements. I have a case where I an using len() in a lambda expression and am trying to get the length of the return value of a ...
1
vote
4answers
489 views

Decide which python version to use for pip and easy_install

I have two python versions on my server namely 2.4 and 2.7. It is running RHEL 5.8. I already have pip and easy_install installed on my server. When I try to install ipython using easy_install or ...
0
votes
1answer
87 views

Multithreading in C++ with embedded python modules

I'm trying to create a multi threaded program by launching a boost thread which calls a function which in turn calls some python module but the program hangs there as it acquires some ...
2
votes
1answer
227 views

functools.wraps for python 2.4

functools.wraps is not available in python 2.4.Is there any other module which can be used instead of this in python 2.4?
3
votes
3answers
84 views

Python Optimize Grouper Function to avoid None elements

Hello I am using something the Grouper function from python's itertools to cut large chunks of select where in(idlist) queries down for sqlite performance. The problem is grouper fills in the whole ...
0
votes
1answer
39 views

Python: log search, for first specific entry print to logfile

Question: I'm trying to search a syslog (Linux server) for the first entry of an specific event and then execute a command (future development) and then log the information. I'm not sure if I have ...
0
votes
2answers
83 views

import a class and use the method python

I have a file structure like this: products -product - content - MyContent.py - Tool.py In Tool.py, I have from AccessControl import ClassSecurityInfo from OFS.SimpleItem import ...
3
votes
2answers
1k views

TypeError: __init__() takes exactly 1 argument (3 given) pyXML

I've recently started to learn how to use python to parse xml files. I took the tutorial from http://pyxml.sourceforge.net/topics/howto/node12.html When I run the following code I get the error: ...
0
votes
1answer
341 views

libstdc++.so.5: open failed: no such file or directory through ssh

I am trying to run the plone server from ssh by doing ./bin/instance start but I am getting this wierd error that says Python-2.4/bin/python: fatal: libstdc++.so.5: open failed: No such file or ...
0
votes
1answer
62 views

Unbound method error while calling static method

I have a class with two methods in it, one static and another none static: class Person(object): def getDetails(self): Person.change_something(self.name) @staticmethod def ...
0
votes
1answer
73 views

upgrade python from 2.4 to 2.6 in plone

I am trying to upgrade my plone version from 3.3.5 to 4.0. For this I went to this site: updating plone. But I got stuck in the first point. In plone 3, I have python version of 2.4. But for plone 4.x ...
1
vote
1answer
149 views

Python -0.000000e+00 struct pack return wrong value

Hi I have problem with parsing -0.000000e+00 on linux( on windows is working). struct.pack( "d", -0.000000e+00 ) On linux struct.pack change -0.000000e+00 to 0.000000e+00. When i print value ...
0
votes
1answer
284 views

ImportError: cannot import name asn1

i have installed pysnmp on centos using easy_install, however when i import asn1 it does not work [root@server ~]# python Python 2.4.3 (#1, Jun 18 2012, 08:55:23) [GCC 4.1.2 20080704 (Red Hat ...
3
votes
2answers
471 views

Python, remove directory: error File exists

I need to develop a script that will launch some computations. A want this script to handle ^C correctly by deleting some temporary directory. I have tried several versions of code in the ...
3
votes
3answers
393 views

Python Strange Characters Appear when Write Out to a Text File

I have a simple code over here that should output 2 columns of characters in a text file. infile = open('anything.txt', 'r') outfile = open('some.txt', 'w') f = infile.readlines() data=[] ...
3
votes
1answer
578 views

How can I load a password-protected private key from a .pem file with M2Crypto?

I have a password-protected private key in a .pem file; I want to use it to sign requests to a remote server. I'm able to load the key and enter the passphrase after being prompted for it: python ...
2
votes
2answers
376 views

How to use __del__ in a reliable way?

I have learned that python does not guarantee that __del__ is called whenever an object is deleted. In other words, del x does not necessarily invoke its destructor x.__del__(). If I want to ensure ...
-1
votes
1answer
158 views

Python 2.5.6 vs 2.4.3

I created a python script with Python 2.5.6 (Windows), tested it and it worked correctly. After I put it on the Server (python 2.4.3, Linux) it compiled, but didn't work. It didn't gave me any ...
0
votes
2answers
201 views

Reading user input in python 2.4, putting it into a queue

So I'm writing a differential calculator program in python 2.4 (I know it's out of date, it's a school assignment and our sysadmin doesn't believe in updating anything) that accepts a user input in ...
1
vote
4answers
3k views

How to install Python in Linux without previous version installed

I'm currently doing some embedded systems programming. This was set up by somebody else a few years ago. So now I'm looking to upgrade to Python 2.7.2 to make things simpler because I have already run ...
0
votes
1answer
64 views

keyring for python 2.4

I wrote a package that has dependency in keyring. Everything is installed fine with Python 2.7 until I test Python 2.4 Here is my setup.py from setuptools import setup, find_packages setup( ...

1 2 3