1
vote
0answers
10 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/script.py
on the …
0
votes
7answers
198 views
Are some people incapable of programming? [closed]
I've had this discussion with countless people. Usually they are out of work and cannot find a job. I will recommend to them to take a class and pick up a few programming skills. The overwhelming …
0
votes
2answers
35 views
Module import error using IDLE
I'm an absolute beginner using IDLE (Python 2.6.4) to learn the basics. I recently found a Python program that I want to run but it throws an error although the code looks fine (i.e all modules …
1
vote
6answers
147 views
Native Python Editor for Mac?
I'm currently using IDLE, its decent, but I'd like to know if there're better lightweight IDEs built especially for Mac — free or commercial.
1
vote
1answer
42 views
Identifying idle state on a windows machine
I know about the GetLastInputInfo method but that would only give me the duration since last user input - keyboard or mouse. If a user input was last received 10 minutes ago, that wouldn't mean the …
0
votes
4answers
94 views
In Python 2.6.4, why do I get a syntax error for a function call, of which the function is defined and works perfectly on its own?
This happens in IDLE and Windows 7 RC1 (if that helps). Here is the module:
from math import *
from TurtleWorld import *
world = TurtleWorld()
bob = Turtle()
bob.delay = 0.1
def …
-1
votes
1answer
77 views
Running Python’s IDLE in windows
I messed up my IDLE shortcut. What is the way to start IDLE from the cmd.exe shell in Windows?
0
votes
2answers
22 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 'ctrl' + 'up arrow' or …
1
vote
3answers
143 views
Strange Problem with RPy2
Hello,
After installing RPy2 from
http://rpy.sourceforge.net/rpy2.html
I'm trying to use it in Python 2.6 IDLE but I'm getting this error:
>>> import rpy2.robjects as robjects
…
0
votes
1answer
60 views
No IDLE for Python 3?
I installed Python 3.1 yesterday on my Windows Vista PC, and was surprised to find that the version of IDLE is 2.6.4, for "Python 2.6.4 (r264:75708, Oct 26 2009, 08:23:19) [MSC v.1500 32 bit (Intel)] …
0
votes
1answer
36 views
Pasting multiple lines into IDLE
Is there a way to paste a block of code into IDLE? Pasting line by line works, but sometimes I'd like to paste many lines at once. When I try, IDLE reads the first line and ignores the rest.
…
0
votes
1answer
54 views
Python IDLE: getting Tkinter callback exception
I keep getting:
Any idea?
1
vote
2answers
104 views
Problem running a very simple Python program.
Why is my program giving me an error here?
import random
TheNumber = random.randrange(1,200,1)
NotGuessed = True
Tries = 0
GuessedNumber = int(input("Take a guess at the magic number!: ")) …
0
votes
1answer
83 views
Running Django from IDLE
I wish to test my django project form IDLE shell in windows.
I run following commands
from django.template import Template, Context
t = Template('test template')
but I get following error.
…
1
vote
5answers
172 views
Default save path for Python idle?
Hi Geniuses,
Does anyone know where or how to set the default path/directory on saving python scripts prior to running? On a Mac it wants to save them in the top level ~/Documents directory.. Yuck! …
