1
vote
0answers
8 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
195 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
31 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
138 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
40 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
2answers
593 views
[iPhone] Delaying but not disabling iPhone auto-lock
Hi everyone,
I currently have a very simple app for which the only interaction is shaking the iPhone. However eventually the screen dims and auto-locks since the iPhone is not getting any touch …
0
votes
4answers
92 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
74 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
20 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
138 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
58 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
33 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
51 views
Python IDLE: getting Tkinter callback exception
I keep getting:
Any idea?
2
votes
3answers
1k views
How to start IDLE (Python editor) without using the shortcut on Windows Vista?
I'm trying to teach Komodo to fire up IDLE when I hit the right keystrokes. I can use the exact path of the shortcut in start menu in the Windows Explorer location bar to launch IDLE so I was hoping …
1
vote
2answers
101 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!: ")) …
