`IDLE` is the native Python IDE shipped as part of the Python distribution.

learn more… | top users | synonyms (2)

2
votes
1answer
27 views

How to save custom preferences of python's IDLE?

I have several computers at different locations, and although I'm not coding in IDLE, it is always running in the background, for small testing, debugging and researching tasks. I configured IDLE ...
0
votes
1answer
15 views

import httplib2 works in mac terminal but not IDLE shell

I'm having great problems with getting the python site package httplib2 to work properly in IDLE. I'm using a mac with OSX 10.8.3 and python 2.7. I used the following installation steps to install ...
0
votes
0answers
17 views

Console window with Idle 1.2.4 window Enthought for PPC Mac

I have been given a link to Enthought's EDP_Py25 v4.2.30201 by Jonathan Marsh for my G4 Mac. I have a question regarding launching IDLE 1.2.4 and having a normal Python Shell window and menus along ...
4
votes
2answers
65 views

Can I configure IDLE to automatically convert tabs to spaces?

I know that spaces are preferred over tabs in Python, so is there a way to easily convert tabs to spaces in IDLE or does it automatically do that?
0
votes
0answers
19 views

IDLE for Python 3.3 doesn't start and does not give an error message

I cannot start IDLE from my shortcut or from Start > All Programs > Python 3.3 > IDLE (Python GUI). When I click on it, nothing happens. I tried running as administrator; nothing either... It ...
0
votes
0answers
27 views

Flash AC3 - Timer / “screensaver” function across multiple frames

I am working on a instore touchscreen solution for customers. It build across multiple frames with basic navigation videos ect. I would like to add a timer + event on each frame tracking if the ...
1
vote
1answer
25 views

install error or error running python file

I am running a basic Python file on Windows XP from IDLE. The file name is assignment1.py. The file content is: import sys var = 5 but when I run it, it gives the error: Command: python ...
0
votes
4answers
81 views

Code works in one Python environments but has a syntax error in another

Please have a look at the following code def numberToName(number): if (number==3): return "Three" elif (number==2): return "Two" elif (number==1): return "One" ...
1
vote
1answer
55 views

Code runs in shell but not from the module

This code for downloading a json file from a url runs alright when I type commands one by one in the python shell. However, when I try to run the module containing this code I get: ValueError: No JSON ...
0
votes
0answers
38 views

handling more than one subprocess with python and IDLE

I am trying to use a python script that should allow me to run some subprocesses and to extract some results. I have been looking around and I understood that using import os ...
1
vote
0answers
68 views

Adjusting python auto-complete behavior

I have been using Aptana with pydev and IDLE to learn python2.7. And it has done a fair job of helping me to learn, except for when I came across this microblog tutorial. In it there is a line from ...
0
votes
2answers
34 views

idle-python3.2 not starting: complains of NameError: name 'Tk' is not defined

running linux mint 13 idle-python3.2 did work from the terminal before, now it does not. Calling idle-python3.2 from the terminal throws the error below BUT I can run Idle by double clicking on the ...
0
votes
0answers
72 views

Session timeout too fast in asp.net

I have develop a website where the session timeout too soon. I want to extend my asp.net session into 2 hours(120 mint). The app pool idle time is intact as i have no permission to change it. In ...
1
vote
1answer
31 views

How to deal with Non-ASCII Warning when performing Save on Python code edited with IDLE?

I frequently edit Python code using IDLE and occasionally when I perform a Save I receive an I/O Warning. I am assuming that I have inadvertently added a Non-ASCII character, and I do not really ...
1
vote
1answer
26 views

Why can IDLE be slower than running a program from the command line?

I was recently having problems with IDLE stopping responding once it hit a certain point in my code when processing very long strings, as reflected here: What's an efficient way to encode a (very ...
1
vote
0answers
63 views

Error evaluating user input string in python

I am using notepad++ and windows powershell for editing and executing python 3.2 programs. Here are two case Case 1 w = 'a' u = 'a' print (u == w) OUTPUT: True Case 2 w = "a" u = input('enter ...
1
vote
1answer
103 views

My simple tkinter calculator script only works when run through IDLE. Why?

I have coded a (very) simple calculator script using tkinter on python 3.3. When I run the script through IDLE, it seems to work fine; however, when I run it by simply double clicking on the .py ...
0
votes
1answer
63 views

why doesn't NumPy import in idle 3.30 on Ubuntu 12.10 64 Bit

I installed NumPy by running the following in a linux shell: sudo apt-get install python-numpy In Idle for python 3.30 when I import numpy it outputs the following: Python 3.3.0 (default, Sep ...
0
votes
2answers
63 views

How to call functions from a file in Python?

I am very new to Python. I've learned recently that we could store all our defined functions in one file and call them up when we need it. I'm using Idle on Windows. Where should I store the .py file ...
0
votes
1answer
23 views

Python Idle 3.2 tab glitch

In IDLE using 3.2, whenever I enter a statement in a block and press Enter, the cursor jumps ahead. A LOT. It isn't a big deal, but it's annoying. Does it have to do with my code? Is there a fix? ...
1
vote
0answers
43 views

Python help('modules') command throws WindowsError in IDLE (idle.pyw) but not command line prompt (python.exe)

If I type the following at the python.exe command prompt... >>>help('modules') ...I get a list of available modules as expected. However when I type the same thing in the IDLE environment ...
1
vote
1answer
30 views

Python IDLE: cmd+V to paste not working on OSX

I am using Python 2.7.3 on OSX 10.8.3, installed with MacPorts. If i hit cmd+C or cmd+X on content in IDLE, I can paste it with cmd+V into other apps. But I cannot use cmd+V to paste into IDLE itself, ...
1
vote
3answers
44 views

How to change default directory for IDLE in windows?

The installation directory is "d:\python2.7", and every time I open IDLE and click on menu File and Open item, the default directory is also "d:\python2.7". So I have to change the directory to where ...
0
votes
1answer
451 views

Can't run Python via IDLE from Explorer [2013] - IDLE's subprocess didn't make connection

Resolved April 15, 2013. In windows 7 (64bit) windows explorer when I right clicked a Python file and selected "edit with IDLE" the editor opens properly but when I run (or f5) the Python 3.3.1 ...
0
votes
1answer
44 views

TypeError: 'filter' object is not subscriptable

I am receiving the error TypeError: 'filter' object is not subscriptable When trying to run the following block of code bonds_unique = {} for bond in bonds_new: if bond[0] < 0: ...
3
votes
4answers
64 views

What's the working directory when using IDLE?

So, I'm learning Python and would like to create a simple script to download a file from the internet and then write it to a file. However, I am using IDLE and have no idea what the working directory ...
3
votes
1answer
45 views

How does IDLE run a .py module?

Windows 7 and Python v2.7.3 With this module "test.py": print 'name: ' , __name__ print 'file: ' , __file__ I can go to CMD and type: python test.py The result would be: name: __main__ file: ...
0
votes
1answer
41 views

vim python prompting

This is a follow up question to removing even numbers. Using the IDLE Python 2.7, the program prompts the user to enter numbers. However, if I run the program from vim, it doesn't do this. My vim ...
3
votes
4answers
103 views

What happens in the CPU when there is no user code to run?

It sounds reasonable that the os/rtos would schedule an "Idle task". In that case, wouldn't it be power consuming? (it sounds reasonable that the idle task will execute: while (true) {} )
1
vote
2answers
34 views

My function cannot create text file

I am a beginner in Python and i am reading Wrox's "Beginning Python Using Python 2.6 and Python 3.1"... There is one certain example in chapter 8 about using files and directories that has troubled me ...
0
votes
2answers
96 views

Python, IDLE: Too many recursive errors

This is supposedly a problem with the IDLE editor for Python. (I'm running Python 3.3.0 on OSX, but the same problem occurs with 2.7.3) I'm using IDLE to write Python programs. My problem is: Calling ...
0
votes
1answer
65 views

In Python IDLE 2.7, why is raw_input storing multiple values?

I'm trying to build a hangman game in Python, and I've set it repeat the input function if the user inputs a letter they've already tried. For some reason though, the "guess" variable stores every ...
0
votes
2answers
144 views

How to run a Python script from IDLE command line?

In a bash shell, I can use 'bash ' or 'source ' to invoke a script by hand. Can I do the similar thing in the Python IDLE's interactive shell? I know I can go to File >> Open Module, then run it in a ...
1
vote
3answers
109 views

Default working directory for Python IDLE?

Is there a configuration file where I can set its default working directory? It currently defaults to my home directory, but I want to set it to another directory when it starts. I know I can do ...
1
vote
2answers
89 views

Python Stdout redirect from IDLE

I am trying to get the following code to work for the terminal and the IDLE shell. It is intended to split the stdout to the screen and a log file. class Tee(object): def __init__(self, name, ...
0
votes
0answers
121 views

Find X user idle time in script for all users without root access

I'm wondering whether it is possible to get the idle time for all users on a given linux system that I access via SSH. who -Tu works well for idle times of users in terminal but does not update ...
2
votes
2answers
94 views

Using “Edit with IDLE” with a Python 2.6.5 script

I have installed both Python 2.7.1 and 2.6.5 versions on Windows. I have added only the path of Python 2.6.5 in the Environment Variables. Now, I want to run a Python script x.py using Python 2.6.5. ...
1
vote
1answer
34 views

How to run two modules at the same time in IDLE

I am working on a super simple socket program and I have code for the client and code for the server. How do I run both these .py files at the same time to see if they work ?
1
vote
2answers
56 views

Strange Python 3 error [closed]

I'm pretty sure all of the code is correct; I believe the error may be a mistake with the installation files. a,b = input('Enter in format number^power: ').split('^') a = int (a) b = int (b) result = ...
0
votes
1answer
214 views

.py files not opening in IDLE from OSX Finder?

I recently re-installed Python 2.7.3 from python.org on OSX 10.8.2, and now nothing (literally nothing I can see) happens when I double-click on .py files in Finder, or when I ...
2
votes
1answer
65 views

Python IDLE 2.7 won't execute file until I hit “enter”

For some reason when I select "run module", IDLE won't run the first line of code until I press "enter". It's not a huge problem for this type of program, but I'm confused why this is happening. Can ...
1
vote
1answer
55 views

Python files don't recognize IDLE

I had both Python 2.6 and 2.7 installed on my system and IDLE that I used (by right clicking on a Python file and selecting 'edit with IDLE') was from version 2.6. For some reason, I had to completely ...
-1
votes
1answer
85 views

Python code runs through cmd however not in IDLE..Why?

Okay so i just got my leap motion device and im trying to run the scripts. When I press f5, the scripts load however it doesnt do the functions.. (it initilizes, loads everything) . But when i open ...
0
votes
1answer
125 views

Python 2.7 Unicode/IDLE confusion

I've read a lot about Unicode and the various encodings/decodings in Python 2.7, but I'm still having trouble understanding why IDLE can't seem to print the right string. I have a unicode string: ...
2
votes
0answers
103 views

Why does python shell only execute first line? [closed]

Why does python shell (IDLE) only execute first line? I'm just doing a simple print 'hello world' on one line and then print 'my world' on a second line. Pressing enter only returns "hello world" ...
2
votes
1answer
70 views

speed python script on command line vs launched in IDLE shell

I noticed several times that a simple python script (with some straightforward algebraic computation in a loop) runs considerably faster (up to a factor 6) when launched on a shell command line as ...
0
votes
1answer
97 views

what text editor got something like the code context in idle and right click? [closed]

i use IDLE to edit BIG python files because it got the code context but use kate for small files because it got the right click, i know there are keyboard short-cut but some of my keyboard's key is ...
0
votes
2answers
101 views

I'm new to Python and managed to crash IDLE after adding a line of code to my program

I'm working on a small game and, in the interest of full disclosure, I've learned some other languages before but this is only my second day learning Python. What I was trying to do was simple ...
1
vote
1answer
50 views

Multiple python sessions with IDLE

Is it possible to run more than one python script at the same time? I try to start a second instance of IDLE, however I get an error message: "Socket Error: No connection could be made because ...
0
votes
0answers
17 views

debugging in idle step only my source not library

When attempting to step through my code in IDLE's debugger I often end up stepping through library source. How do I confine my debugging and stepping only to my own source code and not step into the ...

1 2 3 4 5 9