0
votes
0answers
3 views
cygwin version of idle has erroneous I/O handling
I'm using idle (python 2.5) via cygwin on a windows vista machine and when I try to open an already existing .py file I see the full file path
/home/aaron/C:/cygwin/home/aaron/scr …
0
votes
1answer
18 views
What are the advantage and disadvantages of using a list comprehension in Python 2.54-6?
I've heard that list comprehensions can be slow sometimes, but I'm not sure why? I'm new to Python (coming from a C# background), and I'd like to know more about when to use a list …
0
votes
1answer
44 views
A case of outwardly equal lists of sets behaving differently under Python 2.5 (I think …)
Four years ago I wrote a Sudoku puzzle solver, and now I'm trying to understand how it works so that I can reuse parts of it for a KenKen puzzle solver. I thought I'd better compa …
0
votes
2answers
16 views
getting previously typed commands in python
I'm using python 2.5 in windows on a macbook pro with IDLE. How do I get previously typed commands in the python shell? In other operating systems I've managed to do this using 'ct …
0
votes
1answer
107 views
problem when re-running program
I have a fairly simple python loop that calls a few functions, and writes the output to a file. To do this is creates a folder, and saves the file in this folder.
When I run the p …
2
votes
5answers
140 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.
…
1
vote
6answers
94 views
Extracting decimals from a number in Python
I am writing a function to extract decimals from a number. Ignore the exception and its syntax, I am working on 2.5.2 (default Leopard version). My function does not yet handle 0's …
3
votes
4answers
1k 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 …
1
vote
1answer
132 views
How to include and use .eggs/pkg_resources within a project directory targeting python 2.5.1
I have python .egg files that are stored in a relative location to some .py code. The problem is, I am targeting python 2.5.1 computers which require my project be self contained …
1
vote
2answers
282 views
How do I get the operating system name in a friendly manner using Python 2.5?
I tried:
print os.name
And the output I got was:
:nt
However, I want output more like "Windows 98", or "Linux".
After suggestions in this question, I also tried:
import os
…
1
vote
4answers
210 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 …
3
votes
4answers
139 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 …
3
votes
4answers
266 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? …
4
votes
2answers
265 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 …
-1
votes
3answers
81 views
Poplib not working correctly?
I want to get all the messages from my gmail inbox, but I am facing 2 problems.
It does not get all the emails, (as per the count in stat function)
The order of emails it get is …
