Tagged Questions
For issues relating to development in Python, version 2.5.
26
votes
4answers
14k views
How does Python's “super” do the right thing?
I'm running Python 2.5, so this question may not apply to Python 3. When you make a diamond class hierarchy using multiple inheritance and create an object of the derived-most class, Python does the ...
23
votes
3answers
15k views
Python Class Decorator
In Python 2.5, is there a way to create a decorator that decorates a class? Specifically, I want to use a decorator to add a member to a class and change the constructor to take a value for that ...
14
votes
6answers
7k views
How to install Python ssl module on Windows?
The Google App Engine Launcher tells me:
WARNING appengine_rpc.py:399 ssl module not found.
Without the ssl module, the identity of the remote host cannot be verified, and
connections may NOT ...
11
votes
1answer
340 views
AttributeError: '_MainProcess' object has no attribute '_exiting'
I got an
AttributeError: '_MainProcess' object has no attribute '_exiting'
from a Python application. Unfortunately this code has to run Python 2.5 and therefore the processing module nowadays ...
10
votes
3answers
3k views
How do I zip the contents of a folder using python (version 2.5)?
Once I have all the files I require in a particular folder, I would like my python script to zip the folder contents. Is this possible? And how could I go about doing it? A point in the right ...
8
votes
1answer
714 views
Subclassing int in Python
I'm interested in subclassing the built-in int type in Python (I'm using v. 2.5), but having some trouble getting the initialization working.
Here's some example code, which should be fairly obvious.
...
7
votes
5answers
471 views
Tell if python is in interactive mode
In a python script, is there any way to tell if the interpreter is in interactive mode? This would be useful, for instance, when you run an interactive python session and import a module, slightly ...
6
votes
3answers
101 views
How to do a memset with Python buffer object?
How can I do a fast reset for a continue set of values inside a Python buffer object?
Mainly I am looking for a memset :)
PS. The solution should work with Python 2.5 and modify the buffer itself ...
6
votes
5answers
3k views
Python 2.5 Windows Binaries?
I need to test an issue that occurs on Windows with Python 2.5, but the releases page doesn't link to a binary for 2.5.
Is there anywhere I could find a copy?
5
votes
3answers
560 views
ctypes import not working on python 2.5
I am trying to import ctypes, and I am using Python 2.5.5 installed using macports (on Mac OS X 10.6).
I get an error saying "ImportError: No module named _ctypes" (see details below). As I ...
5
votes
1answer
311 views
Class decorators in Python 2.5?
Is there a way I can make class decorators work on Google App Engine, which is limited to Python 2.5?
Or let me rephrase that: is it possible to alter the behavior of Python's parser from the same ...
5
votes
3answers
984 views
How to use time > year 2038 on official Windows Python 2.5
The official Python 2.5 on Windows was build with Visual Studio.Net 2003, which uses 32 bit time_t. So when the year is > 2038, it just gives exceptions.
Although this is fixed in Python 2.6 (which ...
4
votes
3answers
129 views
How to define a binary string in Python in a way that works with both py2 and py3?
I am writing a module that is supposed to work in both Python 2 and 3 and I need to define a binary string.
Usually this would be something like data = b'abc' but this code code fails on Python 2.5 ...
4
votes
1answer
54 views
How do you assign an exception to a local variable in Python 2.5?
In Python 2.6+, you can handle exceptions like this:
try:
# stuff
except Exception as e:
return 'exception %s' % type(e)
What is the equivalent in 2.5?
4
votes
3answers
1k views
Multiple (asynchronous) connections with urllib2 or other http library?
I have code like this.
for p in range(1,1000):
result = False
while result is False:
ret = urllib2.Request('http://server/?'+str(p))
try:
result = ...
4
votes
2answers
221 views
Python 2.6 to 2.5 cheat sheet
I've written my code to target Python 2.6.5, but I now need to run it on a cluster that only has 2.5.4, something that wasn't on the horizon when I wrote the code. Backporting the code to 2.5 ...
4
votes
3answers
6k views
how to add json library
i am new to python, on my Mac, when i issue command
User:ihasfriendz user$ python main.py
Traceback (most recent call last):
File "main.py", line 2, in <module>
import json
ImportError: ...
4
votes
4answers
791 views
Can I make Python 2.5 exit on ctrl-D in Windows instead of ctrl-Z?
I'm used to ending the python interactive interpreter using Ctrl-d using Linux and OS X. On windows though, you have to use Ctrl-z and then enter. Is there any way to use Ctrl-d?
3
votes
2answers
198 views
Remove duplicate entries from nested dictionary, if two values are the same, in Python
Consider this dictionary format.
{1:{'name':'chrome', 'author':'google', 'url':'http://www.google.com/' },
2:{'name':'firefox','author':'mozilla','url':'http://www.mozilla.com/'}}
I want to remove ...
3
votes
4answers
843 views
How to simulate ZipFile.open in Python 2.5?
I want to extract a file from a zip to a specific path, ignoring the file path in the archive. This is very easy in Python 2.6 (my docstring is longer than the code)
import shutil
import zipfile
def ...
3
votes
2answers
225 views
Python - Code snippet not working on Python 2.5.6, using IDLE
I am using a piece of self-modifying code for a college project.
Here it is:
import datetime
import inspect
import re
import sys
def main():
# print the time it is last run
lastrun = 'Mon ...
3
votes
1answer
145 views
Until when will Python 2.5 be supported?
Apparently Python only supports 2 minor versions (like 2.X), so that would mean Python 2.5 would get phased out when Python 2.7 comes out (in June 2010?)
Is this correct? PEP 356 -- Python 2.5 ...
3
votes
5answers
3k views
python import error
I'm trying to use some python-2.1 code to control another program (ArcGIS). The version of python I am using is 2.5. I am getting the following error message when I run the code.
...
3
votes
4answers
767 views
How can I list the methods in a Python 2.5 module?
I'm trying to use a Python library written in C that has no documentation of any kind. I want to use introspection to at least see what methods and classes are in the modules. Does somebody have a ...
2
votes
1answer
89 views
Ultimate answer to relative python imports
I know that there are lots of questions about the same import issues in Python but it seems that nobody managed to provide a clear example of correct usage.
Let's say that we have a package mypackage ...
2
votes
1answer
69 views
Python Decorate all methods of subclass, and provide means to override
I am working on finding a way to reduce boilerplate decorators. We have a lot of classes that use a @decorate. For example:
class MyClass(Base):
@decorate
def fun1(self):
pass
...
2
votes
2answers
83 views
How to access a block of memory as a file object in Python 2.5?
I would like to get a file object for a block of memory in Python 2.5 under Windows.(for some reasons I cannot use newer versions for this tasks.)
So as input I do have a pointer and a size and let's ...
2
votes
2answers
123 views
Format int as int, but float as %.3f
I have a function that expects two cutoff values, called min_df and max_df. Either may be an int to denote an absolute frequency cutoff, or a float to denote a relative frequency. Now, I want to add ...
2
votes
2answers
69 views
Is it possible to use wsgiservice with Python 2.5 (Google App Engine)?
I would like to use the WsgiService library to write a REST service on Google App Engine (GAE). The two features I like most are the way it automatically outputs a certain format (JSON, XML, ...) ...
2
votes
1answer
100 views
Python sqlite index out of range error after table drop/add?
I've got a wrapper I wrote around the sqlite3 module that lets me serialize access from multiple threads. It also lets me automatically migrate tables when I change their definition. I noticed when ...
2
votes
1answer
122 views
How can I change processname of my python script on OpenBSD4.8
I tried py-setproctitle and setproctitle. Both of them didn't work on OpenBSD.
2
votes
1answer
78 views
Python2.6+ code parser
Is there a parser that:
is able to parse Python2.6+ code, and
can be run in Python2.5 (python-only, no C extensions allowed)?
NOTE: This is somewhat related to my previous quostion about class ...
2
votes
2answers
352 views
Merge nested dictionaries, by nested keys?
I have several dictionaries with different and common keys, plus different and common keys in the nested dictionary. Below is a simplified example, the actual dictionaries have thousands of keys.
...
2
votes
4answers
274 views
Sort nested dictionary by value, and remainder by another value, in Python
Consider this dictionary format.
{'KEY1':{'name':'google','date':20100701,'downloads':0},
'KEY2':{'name':'chrome','date':20071010,'downloads':0},
...
2
votes
1answer
466 views
Python 2.6 bindings for SVN 1.6.6
I'm trying to install Trac 0.11 on Windows XP with Python 2.6 and VisualSVN server (Subversion 1.6.6) but I can't seem to find working bindings.
1
vote
2answers
74 views
Python 2.5 convert string to binary
I know this is easily possible in python 2.6. But what is the easiest way to do this in Python 2.5?
x = "This is my string"
b = to_bytes(x) # I could do this easily in 2.7 using bin/ord 3+ could ...
1
vote
2answers
77 views
Can I use Python 3 super() in Python 2.5.6?
Can I use clean Python 3 super() syntax in Python 2.5.6?
Maybe with some kind of __future__ import?
1
vote
1answer
35 views
how to find a word in ASCII file using python
I want to find a word and its index but the problem is I am only getting its first position while the word appear more than one time in file. The file's content is,
[MAKE ...
1
vote
1answer
103 views
Embedding Subplots in wxPython
I am using Python Active version 2.5(32 bits). I am facing a problem in doing subplotting in wxPython. In the program when I click 1st button the both subplots work fine but when I click on 2nd ...
1
vote
3answers
67 views
Python - Raising an exception or not?
Here's a description of my problem:
I have the task to take a bunch of tablenames and put a prefix in front of them, like so:
PREFIX = 'foo_';
prefixed_tablename = "".join([PREFIX, tablename[:27]])
...
1
vote
1answer
106 views
Can I get a reference to the 'owner' class during the __init__ method of a descriptor?
Is it possible to access the 'owner' class inside a descriptor during the __init__ function of that descriptor, without passing it in manually as in this example?
class FooDescriptor(object):
def ...
1
vote
3answers
606 views
Resolve pip/virtualenv fiasco after upgrading Python 2.5 to Python 2.6?
I upgraded Python 2.5 to Python 2.6 on my system and it's crapping out ( yeah, it's my fault but at least this isn't a high priority production server ). pip didnt work so I had to manually grab the ...
1
vote
0answers
145 views
Python Subprocess sends SIGTERM to other processes
I have a problem with subprocess module.
I wrote this code in python. http://pastebin.com/CHaLGtvD
trying to run it on openbsd 4.8 with python2.5
When I run the script I can't use any other ...
1
vote
3answers
204 views
different behavior when using re.finditer and re.match
I'm working on a regex to to collect some values from a page through some script. I'm using re.match in condition but it returns false but if i use finditer it returns true and body of condition is ...
1
vote
6answers
167 views
Can I do a reduce on a list comprehension into two lists, based on two values?
I've got the following code.
sum_review = reduce(add,[book['rw'] for book in books])
sum_rating = reduce(add,[book['rg'] for book in books])
items = len(books)
avg_review = sum_review/items
...
1
vote
1answer
261 views
Python: NameError: name 'buffer' is not defined with Ant Based framework batch file
I'm using a python script to execute an Ant based framework batch file(Helium.bat)
subprocess.Popen('hlm '+commands, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
However the script ...
1
vote
4answers
548 views
Python 2.5 (PyPy) compatible web server / framework
I'm looking for a simple Python framework/library for creating a website run using PyPy.
So far, I'm using web.py, so that's the feature set (a bit a templating, sessions, input processing, that's ...
1
vote
3answers
282 views
Possible to do ordered dictionary in python 2.5 (due to GAE)?
I'm new to Python, and using Google App Engine, which is currently running only Python 2.5. Are there any built-in ways of doing an ordered dictionary, or do I have to implement something custom?
1
vote
1answer
182 views
Python 2.5 Import dll AttributeError
I have a program that runs peachy in Py2.4. I import the TobiiPlugin.dll file and then run my scripts.
import TobiiPlugin as tobii
tobii.setGazeSubjectProfile(3, 0)
However, when I moved the code ...
1
vote
1answer
426 views
Python win32crypt.CryptProtectData difference between 2.5 and 3.1?
I'm trying to hash a password to dump into a .rdp file. I found a site that (more or less) shows how to do that here but it doesn't work in 3.1.
In 2.5.4 I get this:
>>> import win32crypt
...