Top "Python-2.5" questions

For issues relating to development in Python, version 2.5.

Python dictionary creation error

I am trying to create a Python dictionary from a stored list. This first method works >>> myList = [] &…

python python-2.5
Python urlopen error

I've just bought synology NAS (DS213J) and I am trying to run a python script on it. My python …

python python-2.5 urlopen
How to check if a string contains only characters from a given set in python

I have a a user-inputted polynomial and I only want to use it if it only has characters in the …

python string python-2.5
Is there any better way to capture the screen than PIL.ImageGrab.grab()?

I am making a screen capture program with python. My current problem is PIL.ImageGrab.grab() gives me the same …

python windows windows-xp python-imaging-library python-2.5
Python - How to check if string is a HEX Color Code

I need your help! Im kinda new whats regarding python and "hex". I have a site where people can enter …

hex python-2.5
Relative imports in python 2.5

I know that there are lots of questions about the same import issues in Python but it seems that nobody …

python import relative-path python-2.5
how to enable & disable tabs in a Tkinter/Tix Python GUI

I'm trying to make a tabbed GUI in Python and I want to be able to toggle the enabled/disabled …

python tkinter python-2.5 tix
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 …

python wxpython buffer python-2.5
Access to errno from Python?

I am stuck with a fairly complex Python module that does not return useful error codes (it actually fails disturbingly …

python linux python-2.5 errno
How to get HTTP return code from python urllib's urlopen?

I have the following code: f = urllib.urlopen(url) html = f.read() I would like to know the HTTP status …

python urllib python-2.5