active questions tagged idle - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T06:13:38Zhttp://stackoverflow.com/feeds/tag/idlehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1937760/alternative-to-idle0Alternative to IDLE [closed]Elliot2009-12-21T01:30:31Z2009-12-21T03:28:02Z
<blockquote>
<p><strong>Possible Duplicates:</strong><br>
<a href="http://stackoverflow.com/questions/81584/what-ide-to-use-for-python">What IDE to use for Python</a><br>
<a href="http://stackoverflow.com/questions/135029/what-ide-would-you-recommend-for-python-development">What IDE would you recommend for Python development?</a> </p>
</blockquote>
<p>I do a lot of work in python, and one thing I have come to loathe is opening up IDLE whenever I need to use the command shell. A lot of editors can do Python syntax highlighting, but I don't know of any that have a live shell terminal. I generally like programs like Programmer's Notepad and Kate for this sort of thing, although I have to work on multiple platforms (without installing massive subsidiary OSes, so I can't generally use Kate). Is there an alternative to IDLE?</p>
http://stackoverflow.com/questions/1911615/python-how-do-i-find-why-idle-restarts1Python: How do I find why IDLE restarts?Klerk2009-12-16T01:04:08Z2009-12-16T01:12:33Z
<p>I am using python 2.5 on windows. All I am doing is unpickling a large file (18MB - a list of dictionaries) and modifiying some of its values. Now this works fine. But when I add a couple of prints, IDLE restarts. And weirdly enough it seems to be happening where I added the print. I figured this out commenting and uncommenting things line by line. I added a try catch around the print, but am not able to catch anything.
When does IDLE restart? And how do I catch any exceptions or errors it throws(if it does)?</p>
http://stackoverflow.com/questions/1795512/cygwin-version-of-idle-has-erroneous-i-o-handling1cygwin version of idle has erroneous I/O handlingunknown (yahoo)2009-11-25T08:49:56Z2009-11-25T08:49:56Z
<p>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</p>
<p>/home/aaron/C:/cygwin/home/aaron/script.py</p>
<p>on the banner of the freshly openned file window when I expect simply</p>
<p>/home/aaron/script.py</p>
<p>In addition, the file appears blank which makes sense...basically idle is opening up a nonexistent file in some fictitious path. So what is causing the problem and how to fix? Anyone?</p>
http://stackoverflow.com/questions/1792359/are-some-people-incapable-of-programming0Are some people incapable of programming? [closed]Byron Whitlock2009-11-24T19:25:59Z2009-11-24T19:59:18Z
<p>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 response I get is "I can't do that". "I am not smart enough" (in so many words). </p>
<p>I tend to think anyone can learn to code if they want to, but perhaps I've been too deep in the industry for too long? I learned basic programming when i was a pre-teen, so perhaps I don't have a clear view. Is the learning curve so steep that it is insurmountable for someone over 30 (most out of work folks I talk are over 30)?</p>
<p>I am particular interested in comments from those who recently became programmers.</p>
http://stackoverflow.com/questions/1774453/module-import-error-using-idle0Module import error using IDLENimbuz2009-11-21T03:55:49Z2009-11-21T04:36:00Z
<p>I'm an absolute beginner using IDLE (Python 2.6.4) to learn the basics. I recently found a <a href="http://code.google.com/p/css-py" rel="nofollow">Python program</a> that I want to run but it throws an error although the code looks fine (i.e all modules exist):</p>
<pre><code>from css.parse import parse
data = """
em {
padding: 2px;
margin: 1em;
border-width: medium;
border-style: dashed;
line-height: 2.4em;
}
p { color: red; font-size: 12pt }
p:first-letter { color: green; font-size: 200% }
p:first-line { color: blue }"""
for rule in parse(data):
print rule
for decl in parse(data)[0]:
print decl
</code></pre>
<p>Error:</p>
<pre><code>ImportError: No module named parse
</code></pre>
<p>How do I fix this? I'm using Snow Leopard.</p>
<p>Edit: I guess its a PATH issue, where should I place the modules, which directory?</p>
http://stackoverflow.com/questions/1736451/native-python-editor-for-mac1Native Python Editor for Mac?Nimbuz2009-11-15T03:19:14Z2009-11-15T06:56:19Z
<p>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. </p>
http://stackoverflow.com/questions/1702646/identifying-idle-state-on-a-windows-machine1Identifying idle state on a windows machineSaM2009-11-09T17:51:32Z2009-11-09T17:55:46Z
<p>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 system has been idle for 10 minutes - scans, downloads, movies - lots of reasons.</p>
<p>So how can we identify whether the system is truly idle or not?</p>
<p>Does anyone know what Window's definition of "idle" is?
Must be a combination of thresholds - like less than 5% cpu util, less than 3% disk util etc. - along with the user input parameter...anyone knows the exact definition?</p>
http://stackoverflow.com/questions/1023265/iphone-delaying-but-not-disabling-iphone-auto-lock0[iPhone] Delaying but not disabling iPhone auto-lockSean R2009-06-21T05:18:06Z2009-11-07T17:21:41Z
<p>Hi everyone,</p>
<p>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 events. I was wondering if there is a way to reset the auto-lock time-out when shaken?</p>
<p>I know that to disable auto-lock completely I would do this: </p>
<pre><code>[[ UIApplication sharedApplication ] setIdleTimerDisabled: YES ]
</code></pre>
<p>but I don't really want to disable it completely; if the iPhone is legitimately not being used it should auto-lock as expected.</p>
<p>Thanks for your help.</p>
http://stackoverflow.com/questions/1689594/in-python-2-6-4-why-do-i-get-a-syntax-error-for-a-function-call-of-which-the-fu0In 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?Geoffrey van Wyk2009-11-06T18:59:29Z2009-11-06T19:08:03Z
<p>This happens in IDLE and Windows 7 RC1 (if that helps). Here is the module:</p>
<pre><code> from math import *
from TurtleWorld import *
world = TurtleWorld()
bob = Turtle()
bob.delay = 0.1
def polyline(turtle, length, n, angle):
for i in range(n):
fd(turtle, length)
rt(turtle, angle)
def polygon(turtle, length, n):
""" polygon uses a turtle to draw a polygon
with n sides of the given length.
"""
angle = 360.0/n
polyline(turtle, length, n, angle)
def spokes(turtle, length_of_spoke, number_of_spokes):
angle = 360.0/number_of_spokes
for i in range(number_of_spokes):
turtle.fd(length_of_spoke)
turtle.pd
turtle.bk(length_of_spoke)
turtle.rt(angle)
turtle.pu
def pie(turtle, length_of_side, number_of_sides):
"""pie uses a turtle to draw a polygon
with sides of the given length and with the given
number of sides.
"""
angle = 360.0/number_of_sides
length_of_spoke = length_of_side/(2*sin(pi/180*angle/2)
spokes(turtle, length_of_spoke, number_of_sides)
turtle.pd
turtle.fd(length_of_spoke)
turtle.lt(270-angle/2)
polygon(turtle, length_of_side, number_of_sides)
spokes(bob, 30, 11)
wait_for_user()
</code></pre>
<p>When I run the program, I get the error: There is an error in your program: invalid syntax. IDLE then highlights the "spokes" word within the pie-function.</p>
<p>If I comment-out the whole pie-function, the program runs perfectly.</p>
http://stackoverflow.com/questions/1662576/running-pythons-idle-in-windows-1Running Python's IDLE in windowscool-RR2009-11-02T17:22:42Z2009-11-02T17:25:56Z
<p>I messed up my IDLE shortcut. What is the way to start IDLE from the cmd.exe shell in Windows?</p>
http://stackoverflow.com/questions/1654520/getting-previously-typed-commands-in-python0getting previously typed commands in pythonwomble2009-10-31T14:23:33Z2009-10-31T14:44:47Z
<p>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 a similar combination. I've tried all likely combinations without success.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1649503/strange-problem-with-rpy21Strange Problem with RPy2jrara2009-10-30T12:24:28Z2009-10-30T17:30:59Z
<p>Hello,</p>
<p>After installing RPy2 from </p>
<p><a href="http://rpy.sourceforge.net/rpy2.html" rel="nofollow">http://rpy.sourceforge.net/rpy2.html</a></p>
<p>I'm trying to use it in Python 2.6 IDLE but I'm getting this error:</p>
<pre><code>>>> import rpy2.robjects as robjects
>>> robjects.r['pi']
<RVector - Python:0x0121D8F0 / R:0x022A1760>
</code></pre>
<p>What I'm doing wrong?</p>
http://stackoverflow.com/questions/1630728/no-idle-for-python-30No IDLE for Python 3?NotSuper2009-10-27T13:15:19Z2009-10-27T13:45:07Z
<p>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)] on win32"</p>
<p>I was hoping to use IDLE to investigate some of the new features of Python 3...</p>
<p>I guess I'm stuck with the command line...</p>
<p>Anyone know what's up with Python 3's IDLE?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1615379/pasting-multiple-lines-into-idle0Pasting multiple lines into IDLEfoosion2009-10-23T19:15:46Z2009-10-23T19:48:47Z
<p>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.</p>
<pre><code>>>> a = 1
b = 2
c = 3
>>>
>>> a
1
>>> b
Traceback (most recent call last):
File "<pyshell#3>", line 1, in <module>
b
NameError: name 'b' is not defined
</code></pre>
http://stackoverflow.com/questions/1544573/python-idle-getting-tkinter-callback-exception0Python IDLE: getting Tkinter callback exceptionjldupont2009-10-09T14:09:52Z2009-10-10T14:52:01Z
<p>I keep getting:
<img src="http://i36.tinypic.com/aw9u0z.png" alt="alt text" /></p>
<p>Any idea?</p>
http://stackoverflow.com/questions/118260/how-to-start-idle-python-editor-without-using-the-shortcut-on-windows-vista2How to start IDLE (Python editor) without using the shortcut on Windows Vista?Jason Dagit2008-09-22T23:44:21Z2009-10-08T11:30:52Z
<p>I'm trying to teach Komodo to fire up <a href="http://en.wikipedia.org/wiki/IDLE%5F%28Python%29" rel="nofollow">IDLE</a> 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 Komodo would be able to use it as well. But, giving this path to Komodo causes it to say that 1 is returned. This appears to be a failure as IDLE doesn't start up.</p>
<p>I thought I'd avoid the shortcut and just use the exact path. I go to the start menu, find the shortcut for IDLE, right click to look at the properties. The target is grayed out, but says "Python 2.5.2". The "Start in" is set to, "C:\Python25\". The "Open File Location" button is also grayed out.</p>
<p>How do I find out where this shortcut is really pointing? I have tried starting python.exe and pythonw.exe both in C:\Python25, but neither starts up IDLE.</p>
http://stackoverflow.com/questions/1522708/problem-running-a-very-simple-python-program1Problem running a very simple Python program.Papuccino12009-10-05T22:22:08Z2009-10-05T22:48:29Z
<p>Why is my program giving me an error here?</p>
<pre><code>import random
TheNumber = random.randrange(1,200,1)
NotGuessed = True
Tries = 0
GuessedNumber = int(input("Take a guess at the magic number!: "))
while NotGuessed == True:
if GuessedNumber < TheNumber:
print("Your guess is a bit too low.")
Tries = Tries + 1
GuessedNumber = int(input("Take another guess at the magic number!: "))
if GuessedNumber > TheNumber:
print("Your guess is a bit too high!")
Tries = Tries + 1
GuessedNumber = int(input("Take another guess at the magic number!: "))
if GuessedNumber == TheNumber:
print("You've guess the number, and it only took you " + string(Tries) + "!")
</code></pre>
<p>The error is on the last line. What can I do?</p>
<p>Edit:</p>
<p>Also, why can;t I use Tries++ here in Python? Isn't there an autoincrement code?</p>
<p>Edit 2: Error is:</p>
<pre><code>Traceback (most recent call last):
File "C:/Users/Sergio/Desktop/GuessingGame.py", line 21, in <module>
print("You've guess the number, and it only took you " + string(Tries) + "!")
NameError: name 'string' is not defined
</code></pre>
http://stackoverflow.com/questions/1450558/running-django-from-idle0Running Django from IDLESoftware Enthusiastic2009-09-20T08:00:07Z2009-09-20T15:57:31Z
<p>I wish to test my django project form IDLE shell in windows.
I run following commands</p>
<pre><code>from django.template import Template, Context
t = Template('test template')
</code></pre>
<p>but I get following error.</p>
<pre><code>Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
t = Template('test template')
File "C:\Program Files\Python26\lib\site-packages\django\template\__init__.py", line 164, in __init__
if settings.TEMPLATE_DEBUG and origin is None:
File "C:\Program Files\Python26\lib\site-packages\django\conf\__init__.py", line 28, in __getattr__
self._import_settings()
File "C:\Program Files\Python26\lib\site-packages\django\conf\__init__.py", line 59, in _import_settings
self._target = Settings(settings_module)
File "C:\Program Files\Python26\lib\site-packages\django\conf\__init__.py", line 94, in __init__
raise ImportError, "Could not import settings '%s' (Is it on sys.path? Does it have syntax errors?): %s" % (self.SETTINGS_MODULE, e)
ImportError: Could not import settings 'C:\Program Files\Python26\Lib\site-packages\django\conf' (Is it on sys.path? Does it have syntax errors?): Import by filename is not supported.
</code></pre>
<p><strong>Can you help me out?</strong></p>
http://stackoverflow.com/questions/1424398/default-save-path-for-python-idle1Default save path for Python idle?rh0dium2009-09-14T23:28:28Z2009-09-15T06:17:50Z
<p>Hi Geniuses,</p>
<p>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! I would like to specify a real location. </p>
<p>Any ideas?</p>
<p><em>Alternatively I'd be cool with just not saving the file (if needed a temp file in /tmp is OK)</em></p>
<p>Thanks</p>
http://stackoverflow.com/questions/1355972/how-to-know-if-xbap-application-is-idle0How to know if XBAP application is idleArvind2009-08-31T05:45:38Z2009-08-31T05:45:38Z
<p>Hi,</p>
<p>How can I get to know if a XBAP application is idle ie. its not been used by an user for some specific time duration, so that I can logoff the session?</p>
<p>Thanks</p>
<p>Arvind</p>
http://stackoverflow.com/questions/1346965/visual-studio-2008-crawling-after-long-idle-time0Visual Studio 2008 crawling after long idle timeSuperOli2009-08-28T13:27:56Z2009-08-28T14:50:32Z
<p>What's up people.</p>
<p>Something's been bothering me for a while now... and I was wondering if any of you might know of a workaround for this.</p>
<p>The C# solution im working on is a huge solution that contains about 20 projects and almost the same amount of unit test projects. Each projects contains hundreds of files. So opening and closing the solution takes a while... but once it's opened, everything is fine.</p>
<p>But, if I leave my computer up for the night (with my solution still opened in VS) and come back the next morning, everything I'll do in VS will be <em>very</em> slow for the next half hour or so.</p>
<p>I know why this happens... it's because Windows seems to remove idle processes from memory (RAM). And when I do something in VS, it takes the data from the pagefile and puts it back in the memory which slows everything single operations I do till the process' memory has been fully restored in RAM.</p>
<p>So my question is, is there a way to tell Windows that VS is a high priority process/application and to leave that process' memory in RAM?</p>
<p>Thanks in advance,</p>
<p>-Oli</p>
http://stackoverflow.com/questions/506051/how-to-know-the-computer-is-idle-now4How to know the computer is idle now?Yigang Wu2009-02-03T04:50:44Z2009-08-26T12:47:37Z
<p>Is there any Win32 API to know if the computer is idle or not? </p>
http://stackoverflow.com/questions/1303852/how-can-one-set-up-a-thread-in-c-to-only-execute-when-cpu-is-idle2How can one set up a thread in C# to only execute when CPU is idle?Elan2009-08-20T03:51:22Z2009-08-20T03:55:50Z
<p>I have a Windows Service in C#. I want a certain thread to perform specific actions, but only when the CPU is idle. Is there a way to do this in C#.</p>
http://stackoverflow.com/questions/1251678/how-to-prevent-processmessages-in-delphi3How to Prevent ProcessMessages in Delphilkessler2009-08-09T16:24:07Z2009-08-10T08:33:18Z
<p>The Application.ProcessMessages command is well known and I use it in long processes to ensure my program will not tie up the computer.</p>
<p>But I have one fairly quick set of processing, where I am buffering a view into a file. During the buffering procedure, a few system messages may get sent off (e.g. redraw or scrollbar move or other events). I want to prevent these from getting handled by ProcessMessages until my buffering is complete.</p>
<p>Is there any way to either:</p>
<ol>
<li><p>Prevent Application.ProcessMessages until my procedure is complete, or</p></li>
<li><p>Trap all messages generated during my procedure, and not release them until the end of the procedure.</p></li>
</ol>
http://stackoverflow.com/questions/874757/python-idle-subprocess-error3Python IDLE subprocess error?Ollie Rowse2009-05-17T14:42:48Z2009-08-02T07:23:34Z
<blockquote>
<p>IDLE's subprocess didn't make
connection. Either IDLE can't start a
subprocess or personal firewall
software is blocking the connection.</p>
</blockquote>
<p>Don't think this has been asked-how come this comes up occasionally when running very simple programs-I then have to go to Task Manager & stop all Pythonw processes to get it to work again?</p>
<p>It seems to happen randomnly on different bits of code-here is the one I'm doing at the moment-</p>
<pre><code>f = open('money.txt')
currentmoney = float(f.readline())
print(currentmoney, end='')
howmuch = (float(input('How much did you put in or take out?:')))
now = currentmoney + howmuch
print(now)
f.close()
f = open('money.txt', 'w')
f.write(str(now))
f.close()
</code></pre>
<p>Sometimes it works, sometimes it doesn't!</p>
http://stackoverflow.com/questions/1113315/idle-for-more-than-two-weeks-no-real-development-what-shall-i-do0Idle for more than two weeks, no real development, what shall I do? [closed]Ahmed2009-07-11T09:21:40Z2009-07-11T10:21:08Z
<p>Idle for more than two weeks! all my team is idle! no more coding, just editing few lines of code, no real development, what shall I do?</p>
<pre><code>if(idle){
// Please advise ...
}
</code></pre>
http://stackoverflow.com/questions/1081536/python-how-to-set-breakpoints-on-mac-with-idle-debugger1Python: How to set breakpoints on mac with IDLE debugger?PythonAndy2009-07-04T05:00:20Z2009-07-10T16:21:09Z
<p>I have access to both a PC and a mac for a python class. I find I am unable to set breakpoints in the IDLE debugger in the mac (works fine on the PC). </p>
<p>I've tried "ctrl-click" and configuring the touchpad to recognize two taps at once as a secondary click. I don't have a mouse for the mac, just the touchpad.</p>
<p>MAC OS 10.4.10 tiger </p>
<p>Python/IDLE version 2.6.1</p>
<p>I have tried STFW unsuccessfully...</p>
http://stackoverflow.com/questions/349886/trying-to-connect-internally-to-oracle-getting-an-idle-instance0Trying to connect internally to Oracle, getting an idle instance?seanbseanbseanbseanb2008-12-08T15:36:58Z2009-07-05T01:50:15Z
<p>So I have an Oracle instance, and I know it's running on this system, I've su'd to the oracle user, and I'm trying to connect using "/ as sysdba". However, when I do connect, it says the instance is idle. I know the database is up and opened, because my application's talking to it. My paths (ORACLE_HOME, etc.) might be incorrect: any idea which incorrect setting might result in this?</p>
<p>% sqlplus "/ as sysdba"</p>
<p>SQL*Plus: Release 10.2.0.3.0 - Production on Mon Dec 8 09:23:22 2008</p>
<p>Copyright (c) 1982, 2006, Oracle. All Rights Reserved.</p>
<p>Connected to an idle instance.</p>
<p>09:23:22 SQL> Disconnected</p>
<p>% ps -ef | grep smon
oracle 6961 1 0 Nov 05 ? 1:24 ora_smon_ORA003
%</p>
http://stackoverflow.com/questions/609190/how-can-i-stop-idle-from-printing-giant-lists1How can I stop IDLE from printing giant lists?Alistair2009-03-04T04:10:12Z2009-06-14T00:56:35Z
<p>Sometimes I'll be working with, say, a list of thousands of items in IDLE, and accidently print it out to the shell. When this happens, it crashes or at least very significaly slows down IDLE. As you can imagine, this is extremely inconvenient.
Is there a way to make it, rather than printing the entire thing, just give me a summarised [1, 2, ...] output?
Any help would be much appreciated.</p>
http://stackoverflow.com/questions/829135/animation-timer-vs-idle2Animation: Timer vs IdleVegar2009-05-06T11:23:28Z2009-05-06T12:49:21Z
<p>There is a <a href="http://stackoverflow.com/questions/622604/best-approach-for-game-animation">similar thread</a> else where, but it focues on gameprogramming which I find a little different to regular gui applications with some 'extra sugar'.</p>
<p>What would be the right approach for driving small gui-animations (like expanding/collapsing panels, glowing buttons etc)?</p>
<p>Would it be best to setup a timer to fire at regular intervals, or would it be better to use the idle-event?</p>
<p>How does WPF drive its animations?</p>
<p>I know there are a lot of opinions on whats best out there, so lets collect them all :-)</p>
<p>UPDATE: Ok. I think this came out a little unclear. I'm not using WPF, and I'm not interested in how you trigger an animation in WPF. What I'm after, is a discussion about why a time is better or worse then using an onidle event to drive the animation. Not start it, drive it. </p>