Re: IDLE: clearing the screen

2024-06-10 Thread Michael F. Stemper via Python-list
On 08/06/2024 14.18, Rob Cliffe wrote: OK, here is the advanced version: import os class _cls(object):     def __repr__(self):         os.system('cls')         return '' cls = _cls() Now when you type cls it clears the screen.  The only flaw is that there is a blank line at the very top of th

Re: IDLE: clearing the screen

2024-06-10 Thread Michael F. Stemper via Python-list
On 10/06/2024 09.32, Stefan Ram wrote: "Michael F. Stemper" wrote or quoted: On 08/06/2024 14.18, Rob Cliffe wrote: OK, here is the advanced version: import os class _cls(object):     def __repr__(self):         os.system('cls')         return '' cls = _cls() ... Why have it return any

Re: IDLE: clearing the screen

2024-06-09 Thread Alan Gauld via Python-list
On 08/06/2024 20:18, Rob Cliffe via Python-list wrote: > OK, here is the advanced version: > import os > class _cls(object): >     def __repr__(self): >         os.system('cls') >         return '' > cls = _cls() > > Now when you type > cls > it clears the screen.  For me on a Mac it clears t

Re: IDLE: clearing the screen

2024-06-08 Thread Rob Cliffe via Python-list
OK, here is the advanced version: import os class _cls(object):     def __repr__(self):         os.system('cls')         return '' cls = _cls() Now when you type cls it clears the screen.  The only flaw is that there is a blank line at the very top of the screen, and the ">>>" prompt appears on

Re: IDLE editor suggestion.

2023-12-12 Thread MRAB via Python-list
down arrow key. -Original Message- From: Friedrich Romstedt Sent: Tuesday, December 12, 2023 12:52 PM To: Steve GS Cc: python-list@python.org Subject: Re: IDLE editor suggestion. Hi! Am Di., 12. Dez. 2023 um 09:28 Uhr schrieb Steve GS via Python-list : Maybe this already exists

RE: IDLE editor suggestion.

2023-12-12 Thread Steve GS via Python-list
Subject: Re: IDLE editor suggestion. Hi! Am Di., 12. Dez. 2023 um 09:28 Uhr schrieb Steve GS via Python-list : > > Maybe this already exists but > I have never seen it in any > editor that I have used. You might want to choose Microsoft Code from its Visual Studio family of soft

Re: IDLE editor suggestion.

2023-12-12 Thread Mats Wichmann via Python-list
On 12/12/23 13:50, Thomas Passin via Python-list wrote: On 2023-12-12 08:22, Steve GS via Python-list wrote: > Maybe this already exists but > I have never seen it in any > editor that I have used. > > It would be nice to have a > pull-down text box that lists > all of the searches I have

Re: IDLE editor suggestion.

2023-12-12 Thread Thomas Passin via Python-list
On 2023-12-12 08:22, Steve GS via Python-list wrote: > Maybe this already exists but > I have never seen it in any > editor that I have used. > > It would be nice to have a > pull-down text box that lists > all of the searches I have > used during this session. It > would make editing a lot > easi

Re: IDLE editor suggestion.

2023-12-12 Thread Friedrich Romstedt via Python-list
Hi! Am Di., 12. Dez. 2023 um 09:28 Uhr schrieb Steve GS via Python-list : > > Maybe this already exists but > I have never seen it in any > editor that I have used. You might want to choose Microsoft Code from its Visual Studio family of software, or, if you're ready for a deep dive, you might tr

Re: IDLE editor suggestion.

2023-12-12 Thread MRAB via Python-list
On 2023-12-12 08:22, Steve GS via Python-list wrote: Maybe this already exists but I have never seen it in any editor that I have used. It would be nice to have a pull-down text box that lists all of the searches I have used during this session. It would make editing a lot easier if I could sele

Re: IDLE "Codepage" Switching?

2023-01-18 Thread Eryk Sun
On 1/17/23, Stephen Tucker wrote: > > 1. Can anybody explain the behaviour in IDLE (Python version 2.7.10) > reported below? (It seems that the way it renders a given sequence of bytes > depends on the sequence.) In 2.x, IDLE tries to decode a byte string via unicode() before writing to the Tk te

Re: IDLE "Codepage" Switching?

2023-01-18 Thread Peter J. Holzer
On 2023-01-18 11:05:24 -0500, Thomas Passin wrote: > On 1/18/2023 5:43 AM, Stephen Tucker wrote: > > Thanks for these responses. > > > > I was encouraged to read that I'm not the only one to find this all > > confusing. > > > > I have investigated a little further. > > > > 1. I produced the foll

Re: IDLE "Codepage" Switching?

2023-01-18 Thread Thomas Passin
On 1/18/2023 5:43 AM, Stephen Tucker wrote: Thanks for these responses. I was encouraged to read that I'm not the only one to find this all confusing. I have investigated a little further. 1. I produced the following IDLE log: mylongstr = "" for thisCP in range (1, 256): mylongstr += chr (t

Re: IDLE "Codepage" Switching?

2023-01-18 Thread Stephen Tucker
Thanks for these responses. I was encouraged to read that I'm not the only one to find this all confusing. I have investigated a little further. 1. I produced the following IDLE log: >>> mylongstr = "" >>> for thisCP in range (1, 256): mylongstr += chr (thisCP) + " " + str (ord (chr (thisCP)))

Re: IDLE "Codepage" Switching?

2023-01-18 Thread Peter J. Holzer
On 2023-01-17 22:58:53 -0500, Thomas Passin wrote: > On 1/17/2023 8:46 PM, rbowman wrote: > > On Tue, 17 Jan 2023 12:47:29 +, Stephen Tucker wrote: > > > 2. Does the IDLE in Python 3.x behave the same way? > > > > fwiw > > > > Python 3.10.6 (main, Nov 14 2022, 16:10:14) [GCC 11.3.0] on linux

Re: IDLE "Codepage" Switching?

2023-01-17 Thread Thomas Passin
On 1/17/2023 8:46 PM, rbowman wrote: On Tue, 17 Jan 2023 12:47:29 +, Stephen Tucker wrote: 2. Does the IDLE in Python 3.x behave the same way? fwiw Python 3.10.6 (main, Nov 14 2022, 16:10:14) [GCC 11.3.0] on linux Type "help", "copyright", "credits" or "license()" for more information. s

Re: IDLE "Codepage" Switching?

2023-01-17 Thread rbowman
On Tue, 17 Jan 2023 12:47:29 +, Stephen Tucker wrote: > 2. Does the IDLE in Python 3.x behave the same way? fwiw Python 3.10.6 (main, Nov 14 2022, 16:10:14) [GCC 11.3.0] on linux Type "help", "copyright", "credits" or "license()" for more information. str = "" for c in range(157, 169): s

Re: IDLE is not working after Python installation .

2021-06-22 Thread Mats Wichmann
On 6/21/21 11:14 PM, Ayaana Soni wrote: I have installed python from your site. After installation my IDLE doesn't work. IDLE is not in my search list. Plz help!! Thank you! you asked this before, and didn't answer the questions you got in reply. What does "doesn't work" mean? How is

Re: IDLE is not working after Python installation .

2021-06-22 Thread Terry Reedy
On 6/22/2021 1:14 AM, Ayaana Soni wrote: I have installed python from your site. For what OS. After installation my IDLE doesn't work. How did you try to start it? Did you read the Using Python doc on the website? Can you start python? IDLE is not in my search list. On Windows and

Re: IDLE python

2021-03-13 Thread Terry Reedy
On 3/11/2021 10:28 AM, Yoosuf Oluwatosin via Python-list wrote: I have tried to startup my IDLE python severally but it keeps giving the following message: IDLE’s subprocess didn’t make connection. See the ‘Startup Failure’ section of the IDLE doc online at https://docs.python.org/3/library/

Re: Idle Python issue

2021-02-24 Thread Terry Reedy
On 2/24/2021 5:32 AM, jak wrote: Hello everybody, I encounter a problem using Idle Python in Windows when I use utf8 characters longer than 2 bytes such as the character representing the smile emoticon: The problem is with 'astral' unicode characters, those not in the Basic Multilingual Plan

Re: IDLE

2021-02-16 Thread Terry Reedy
On 2/16/2021 11:52 AM, Mats Wichmann wrote: On 2/16/21 8:09 AM, Will Anderson wrote:     Hi, I hope you are having a good day. I have a small IDLE problem and     can’t seem to fix it. I have a .py file that I want to open using IDLE but     there is no option I have even tried totally wiping

Re: IDLE

2021-02-16 Thread Mats Wichmann
On 2/16/21 8:09 AM, Will Anderson wrote: Hi, I hope you are having a good day. I have a small IDLE problem and can’t seem to fix it. I have a .py file that I want to open using IDLE but there is no option I have even tried totally wiping python and reinstalling it nothing seems to

Re: IDLE error

2020-12-01 Thread Igor Korot
Hi, Alvaro, On Tue, Dec 1, 2020 at 9:11 PM Álvaro d'Ors wrote: > > The IDLE seems to be malfunctioning, I just re-installed Python and used > the reapir function but I can’t open the IDLE, please help. What OS do you use? Are you trying to run it by double-clicking on the icon? What happens? Doe

Re: IDLE: New Feature?

2020-08-11 Thread Terry Reedy
On 8/11/2020 4:26 AM, Steve wrote: << Simplest specification: << one list for all 3 search boxes; << start fresh each session I do not understand what this means... A proposed feature needs a specification with sufficient details to code and review. Your proposal "a pull-down history list fo

RE: IDLE: New Feature?

2020-08-11 Thread Steve
From: Python-list On Behalf Of Terry Reedy Sent: Sunday, August 9, 2020 9:51 PM To: python-list@python.org Subject: Re: IDLE: New Feature? On 8/9/2020 7:39 PM, Steve wrote: > Where would the conversation have to happen to get the forces-that-be > to install a pull-down/history menu for th

Re: IDLE: New Feature?

2020-08-09 Thread Terry Reedy
On 8/9/2020 7:39 PM, Steve wrote: Where would the conversation have to happen to get the forces-that-be to install a pull-down/history menu for the Find option in IDLE? To have to retype the search option over and over when I am toggling between two or more searches gets tiresome. I would rathe

Re: IDLE: New Feature?

2020-08-09 Thread Chris Angelico
On Mon, Aug 10, 2020 at 9:40 AM Steve wrote: > > Where would the conversation have to happen to get the forces-that-be to > install a pull-down/history menu for the Find option in IDLE? To have to > retype the search option over and over when I am toggling between two or > more searches gets tire

Re: IDLE 3.8.4 [was 3.8.3] -- bug report

2020-08-03 Thread Ned Deily
On 2020-08-03 15:37, Halvard Tislavoll wrote: > I'am dealing with a bug [...] > Python 3.8.4 (default, Jul 20 2020, 20:20:14) > IDLE 3.8.4 > > I have been using IDLE for many years. But now I can not do it. > > Example: > I write a heading for a python script in my text editor, xed and save as >

Re: Idle not opening

2020-05-07 Thread Terry Reedy
On 5/6/2020 9:46 AM, Rance Victor wrote: Hey there, After successfully installing Python 3.8.2(64 bit) on my system(windows 10 64 bit OS), my idle is not opening. I've tried uninstalling and reinstalling it again but still the same result. Was the box for installing tkinter and IDLE checked? H

Re: Idle not opening

2020-05-06 Thread Souvik Dutta
What exactly are you seeing when you try to open idle? Don't attach any file or photo. Just say verbally. Souvik flutter dev On Wed, May 6, 2020, 7:40 PM Rance Victor wrote: > Hey there, > After successfully installing Python 3.8.2(64 bit) on my system(windows 10 > 64 bit OS), my idle is not o

Re: IDLE, TCP/IP problem.

2020-01-16 Thread Greg Ewing
On 16/01/20 10:06 pm, Muju's message wrote: “IDLE cannot bind to a TCP/IP port, which is necessary to communicate with its Python execution server. This might be because no networking is installed on this computer. There might be firewall settings or anti-virus software preventing the port fro

Re: IDLE is not working

2019-10-28 Thread Igor Korot
Hi, On Mon, Oct 28, 2019 at 8:01 AM Ehtesham Ul Haque wrote: > > It works for me and 99.9% of people that uses Python! What exactly doesn't work? Thank you. > -- > https://mail.python.org/mailman/listinfo/python-list -- https://mail.python.org/mailman/listinfo/python-list

Re: IDLE not working

2019-09-01 Thread Terry Reedy
On 9/1/2019 1:06 AM, Anoushka wrote: Even after repairing my python IDLE, my IDLE is not working. It says sub process connection error. Kindly help me to resolve. I want to recover my previous work. Sent from Mail for Windows 10 Select Help => IDLE Help and read the Startup Failure section.

Re: IDLE missing !

2019-09-01 Thread Piet van Oostrum
Alex writes: > I tried downloading the 3.7.4 version of python and and then tried to > install tensorflow but found that TF is only available for version > 3.5.x. > Thus uninstalled the 3.7.4. version and tried downloading multiple 3.5.x > version while all of them downloaded but I couldn’d find

Re: IDLE missing !

2019-09-01 Thread MRAB
On 2019-09-01 11:53, Alex wrote: I tried downloading the 3.7.4 version of python and and then tried to install tensorflow but found that TF is only available for version 3.5.x. Thus uninstalled the 3.7.4. version and tried downloading multiple 3.5.x version while all of them downloaded but I co

Re: idle is not at all opening moreover its not showing error any also...what could I do now???

2019-05-13 Thread Terry Reedy
On 5/13/2019 5:47 AM, kalai kathirvel wrote: Run 'python -m idlelib' or 'py -m idlelib' in Command Prompt window. Then report whatever error message you see. -- Terry Jan Reedy -- https://mail.python.org/mailman/listinfo/python-list

Re: IDLE Default Working Directory

2018-11-16 Thread Irv Kalb
> On Nov 15, 2018, at 2:44 PM, eryk sun wrote: > > On 11/14/18, Irv Kalb wrote: >> >> When working with data files, I tell students to put their project (their >> main program and any other related files) in a folder. Then, in their calls >> to "open", I tell them to just give the name of th

Re: IDLE Default Working Directory

2018-11-15 Thread Terry Reedy
On 11/13/2018 9:04 PM, Christman, Roger Graydon wrote: On 13 Nov 2018, at 09:51, Bev in TX wrote: On Nov 12, 2018, at 5:50 PM, Terry Reedy wrote: For me, open (command-O) opens 'Documents'. I presume it should be easy enough to move into a 'py' subfolder.

Re: IDLE Default Working Directory

2018-11-15 Thread eryk sun
On 11/14/18, Irv Kalb wrote: > > When working with data files, I tell students to put their project (their > main program and any other related files) in a folder. Then, in their calls > to "open", I tell them to just give the name of the data file e.g., > 'MyData.txt', or a path relative from th

Re: IDLE Default Working Directory

2018-11-14 Thread Irv Kalb
> On Nov 13, 2018, at 6:04 PM, Christman, Roger Graydon wrote: > > On 13 Nov 2018, at 09:51, Bev in TX wrote: > >> On Nov 12, 2018, at 5:50 PM, Terry Reedy wrote: >> >> For me, open (command-O) opens 'Documents'. I presume it should be easy >> enough to mov

Re: IDLE Default Working Directory

2018-11-14 Thread Bev in TX
Thanks for taking the time to respond, but I’m not certain that we are on the same page. Every time you start Idle, its File -> Open dialog points to the same default location (on MacOS that is ~/Documents). When you open a project’s file from another location, Idle remembers that new folder

Re: IDLE Default Working Directory

2018-11-14 Thread Brian Oney via Python-list
On Tue, 2018-11-13 at 10:33 -0600, Bev in TX wrote: > > On Nov 12, 2018, at 10:07 AM, Brian Oney > > wrote: > > On Mon, 2018-11-12 at 09:35 -0600, Bev in TX wrote: > > > I am not the OP and I’m on macOS — no shortcuts. How would one do the > > > same thing on other platforms? > > > Bev in TX >

Re: IDLE Default Working Directory

2018-11-13 Thread Christman, Roger Graydon
On 13 Nov 2018, at 09:51, Bev in TX wrote: > On Nov 12, 2018, at 5:50 PM, Terry Reedy wrote: > > For me, open (command-O) opens 'Documents'. I presume it should be easy > enough to move into a 'py' subfolder. The whole point is for Idle -> File -> Open (or comm

Re: IDLE Default Working Directory

2018-11-13 Thread Bev in TX
> On Nov 12, 2018, at 10:07 AM, Brian Oney wrote: > > On Mon, 2018-11-12 at 09:35 -0600, Bev in TX wrote: >> I am not the OP and I’m on macOS — no shortcuts. How would one do the same >> thing on other platforms? >> Bev in TX > Hello there, > > I am not an IDLE user. You may try a startup sc

Re: IDLE Default Working Directory

2018-11-13 Thread Bev in TX
> On Nov 12, 2018, at 5:50 PM, Terry Reedy wrote: > > For me, open (command-O) opens 'Documents'. I presume it should be easy > enough to move into a 'py' subfolder. The whole point is for Idle -> File -> Open (or command-O) to automatically open to a specific folder. Bev in TX -- h

Re: IDLE Default Working Directory

2018-11-12 Thread eryk sun
On 11/12/18, Thomas Jollans wrote: > On 13/11/2018 00:45, Terry Reedy wrote: >> >> On Windows, a simple alternate is a .bat file. I belive the folloiwing >> should work. >> >> cd c:/desired/startup/directory >> py -x.y -m idlelib >> >> The default for x.y is latest 3.x or latest 2.x if no 3.x. >

Re: IDLE Default Working Directory

2018-11-12 Thread Terry Reedy
On 11/12/2018 7:15 PM, Thomas Jollans wrote: On 13/11/2018 00:45, Terry Reedy wrote: On Windows, a simple alternate is a .bat file.  I belive the folloiwing should work. cd c:/desired/startup/directory py -x.y -m idlelib The default for x.y is latest 3.x or latest 2.x if no 3.x. Correct me

Re: IDLE Default Working Directory

2018-11-12 Thread Thomas Jollans
On 13/11/2018 00:45, Terry Reedy wrote: > > On Windows, a simple alternate is a .bat file.  I belive the folloiwing > should work. > > cd c:/desired/startup/directory > py -x.y -m idlelib > > The default for x.y is latest 3.x or latest 2.x if no 3.x. Correct me if I'm wrong, but won't that crea

Re: IDLE Default Working Directory

2018-11-12 Thread Terry Reedy
On 11/12/2018 10:35 AM, Bev in TX wrote: On Nov 12, 2018, at 9:16 AM, eryk sun wrote: On 11/12/18, Christman, Roger Graydon mailto:d...@psu.edu>> wrote: I looked in IDLE's own configuration menu, and didn't see anything there -- and I fear that I might have to fight some Windows settings so

Re: IDLE Default Working Directory

2018-11-12 Thread Terry Reedy
On 11/12/2018 2:28 PM, eryk sun wrote: On 11/12/18, Christman, Roger Graydon wrote: eryk sun responded: On 11/12/18, Christman, Roger Graydon wrote: I looked in IDLE's own configuration menu, and didn't see anything there -- and I fear that I might have to f

Re: IDLE Default Working Directory

2018-11-12 Thread eryk sun
On 11/12/18, Christman, Roger Graydon wrote: > eryk sun responded: > > On 11/12/18, Christman, Roger Graydon wrote: >> >> I looked in IDLE's own configuration menu, and didn't see anything there >> -- >> and I fear that I might have to fight some Windows settings

Re: IDLE Default Working Directory

2018-11-12 Thread Christman, Roger Graydon
eryk sun responded: On 11/12/18, Christman, Roger Graydon wrote: > > I looked in IDLE's own configuration menu, and didn't see anything there -- > and I fear that I might have to fight some Windows settings somewhere else > instead. I think this is Windows 10.

Re: IDLE Default Working Directory

2018-11-12 Thread Brian Oney via Python-list
On Mon, 2018-11-12 at 09:35 -0600, Bev in TX wrote: > On Nov 12, 2018, at 9:16 AM, eryk sun wrote: > > On 11/12/18, Christman, Roger Graydon mailto:d...@psu.edu>> > > wrote: > > > I looked in IDLE's own configuration menu, and didn't see anything there > > > -- > > > and I fear that I might have

Re: IDLE Default Working Directory

2018-11-12 Thread Bev in TX
On Nov 12, 2018, at 9:16 AM, eryk sun wrote: > > On 11/12/18, Christman, Roger Graydon mailto:d...@psu.edu>> > wrote: >> >> I looked in IDLE's own configuration menu, and didn't see anything there -- >> and I fear that I might have to fight some Windows settings somewhere else >> instead. I t

Re: IDLE Default Working Directory

2018-11-12 Thread eryk sun
On 11/12/18, Christman, Roger Graydon wrote: > > I looked in IDLE's own configuration menu, and didn't see anything there -- > and I fear that I might have to fight some Windows settings somewhere else > instead. I think this is Windows 10. Modify the "Start in" field of the IDLE shortcut. You

Re: Idle

2018-08-20 Thread Steven D'Aprano
On Mon, 20 Aug 2018 14:46:32 +0400, NAB NAJEEB wrote: > Hi am a beginner can u tell me where can I write my codes I already > tried pycharm and atom.. both are not worked successfully always shows > error...pls guide me... What errors do they show? -- Steven D'Aprano "Ever since I learned abo

Re: Idle

2018-08-20 Thread Abdur-Rahmaan Janhangeer
can you please explain in more details? thank you ! like is the error with a snippet or a system level error ? Abdur-Rahmaan Janhangeer https://github.com/Abdur-rahmaanJ Mauritius -- https://mail.python.org/mailman/listinfo/python-list

Re: IDLE Python won't run or open, neither will it state the error for behaving this way

2018-07-16 Thread Terry Reedy
On 7/16/2018 5:22 AM, Clarence Chanda wrote: HI, I downloaded python 3.7.0 from your python website Which installer for what OS? and it was installed successfully and I was able to run/open python How did you run it? but when I try to run/open IDLE python, How? it just wont open or ru

Re: IDLE doesn't recognise installed packages

2017-10-26 Thread Daniel Tangemann
hi, I had tried typing: "path-to-binary -m pip Terry Reedy hat am 26. Oktober 2017 um 21:35 geschrieben: > > > On 10/26/2017 12:37 AM, Daniel Tangemann wrote: > > ok, I did that. I noticed that this path: > > 'C:\\Users\\Daniel86\\AppData\\Local\\Programs\\Python\\Python36\\Lib\\idlelib' > > is

Re: IDLE doesn't recognise installed packages

2017-10-26 Thread Terry Reedy
On 10/26/2017 12:37 AM, Daniel Tangemann wrote: ok, I did that. I noticed that this path: 'C:\\Users\\Daniel86\\AppData\\Local\\Programs\\Python\\Python36\\Lib\\idlelib' is missing when I run the python.exe without IDLE. how do I fix this? Having idlelib on the path or not should not make any

Re: IDLE doesn't recognise installed packages

2017-10-25 Thread Daniel Tangemann
ok, I did that. I noticed that this path: 'C:\\Users\\Daniel86\\AppData\\Local\\Programs\\Python\\Python36\\Lib\\idlelib' is missing when I run the python.exe without IDLE. how do I fix this? also I get a syntax error when I try that: "To make sure you are running pip with the same binary as IDLE

Re: IDLE doesn't recognise installed packages

2017-10-23 Thread Terry Reedy
On 10/23/2017 10:23 AM, Daniel Tangemann wrote: I've recently downloaded and installed python 3.6. (I had already also 2.7 and 3.2 on my computer) Initially pip was looking in the wrong directory to install to, so I changed that. then it had trouble installing matplotlib, so I decided to get ri

Re: IDLE help.

2017-10-08 Thread Terry Reedy
On 10/8/2017 5:24 AM, Joe Wilde wrote: I am having trouble getting IDLE (Python 3.6 - 64-bit) to open for Windows 10. When I try and run IDLE, nothing happens. It works fine for Python 2.7, but won't open for Python 3.6. Give more information. How did you install Python? Did you select the

Re: IDLE won't install on manual installation

2017-08-29 Thread Yusuf Mohammad
Hi! i want to ask my question again. I have now subscribed to the list. I'll just copy and past it here again: Hi! My name is Yusuf Mohammad. I work for a hospital in Norway and we plan to use python to program a mobile application. I have a admin account on my computer and i am trying to install

Re: IDLE question: "you may still have to reload nested modules."

2016-03-06 Thread Terry Reedy
On 3/6/2016 7:24 AM, alien2u...@gmail.com wrote: Hello list, I am following "Learning Python: Mark Lutz" and came across following in chapter 3 few days back. What is the copyright date on the copy you have? [quote] * You may still have to reload nested modules. Technically speaking, IDLE's

Re: IDLE 3.5.1 quits unexpectedly (portuguese keyboard)

2015-12-21 Thread eryk sun
On Fri, Dec 18, 2015 at 9:15 PM, Osvaldo Dias dos Santos wrote: > > Pressing the tilde key my iMac portuguese keyboard quits IDLE > unexpectedly (along with any associated files I may be working > on, including code). > > The keyboard image is attached. The tilde key is the second > orange one fro

Re: Idle, tk and MacOS

2015-12-03 Thread Laura Creighton
In a message of Thu, 03 Dec 2015 20:34:10 +0100, Laura Creighton writes: >This in to webmaster. Somebody got an error message about their >Tcl/Tk when they started using IDLE. > >They went to https://www.python.org/download/mac/tcltk/ >and, yes indeed, their tk is 8.5.9, their OS is 10.8.5 so th

Re: IDLE quits unexpectedly when about to open or creat a new file

2015-11-10 Thread Terry Reedy
On 11/10/2015 6:01 AM, Chris Angelico wrote: On Tue, Nov 10, 2015 at 9:46 PM, wrote: I need help to find out what's going on. I did some research, but I couldn't find anything to solve this problem: - I open the IDLE program; From the Start menu icon, let us presume. - I go to the 'File'

Re: IDLE quits unexpectedly when about to open or creat a new file

2015-11-10 Thread Chris Angelico
On Tue, Nov 10, 2015 at 9:46 PM, wrote: > I need help to find out what's going on. I did some research, but I couldn't > find anything to solve this problem: > > - I open the IDLE program; > - I go to the 'File' menu; > - I select the 'New File' option > - IDLE quits. > > I run the IDLE version

Re: Idle subprocess error

2015-10-16 Thread Gene Heskett
On Friday 16 October 2015 03:22:55 Chris Angelico wrote: > On Fri, Oct 16, 2015 at 12:08 PM, briankeithroby--- via Python-list > > wrote: > > Idle subprocess error cant use editor. > > > > > > Sent from Windows Mail > > Email error insufficient data. > > Sent from a person who's unable to make so

Re: Idle subprocess error

2015-10-16 Thread Terry Reedy
On 10/15/2015 9:08 PM, briankeithroby--- via Python-list wrote: Idle subprocess error cant use editor. You probably need to restart IDLE with the -n argument. See the doc. -- Terry Jan Reedy -- https://mail.python.org/mailman/listinfo/python-list

Re: Idle subprocess error

2015-10-16 Thread Chris Angelico
On Fri, Oct 16, 2015 at 12:08 PM, briankeithroby--- via Python-list wrote: > Idle subprocess error cant use editor. > > > Sent from Windows Mail > Email error insufficient data. Sent from a person who's unable to make something out of nothing. ChrisA -- https://mail.python.org/mailman/listinfo

Re: IDLE = 'Integrated Development and Learning Environment'

2015-10-02 Thread Chris Angelico
On Sat, Oct 3, 2015 at 1:57 PM, Terry Reedy wrote: > Today, we agreed on the idle-dev list (Guido included) that 'IDLE' should be > interpreted as 'Integrated Development and Learning Environment' rather than > as 'Integrated DeveLopment Environment' (note the 'L' in 'DeveLopment'). > The new long

Re: Idle Not Working.

2015-07-08 Thread Laura Creighton
In a message of Wed, 08 Jul 2015 15:36:50 -0700, sohcahto...@gmail.com writes: >Oops. I usually do, but for some reason Google Groups didn't this time. My >apologies. This isn't google groups. And this may be your problem. Do not include such things as attatchments which may get removed. Inc

Re: Idle Not Working.

2015-07-08 Thread sohcahtoa82
On Wednesday, July 8, 2015 at 2:12:29 PM UTC-7, Mark Lawrence wrote: > On 08/07/2015 19:44, sohcahto...@gmail.com wrote: > > Help us help you. "every time I try to bring up Idle I cannot" does not > > tell us the problem. > > > > Do you get error messages? What do they say? > > > > Would you pl

Re: Idle Not Working.

2015-07-08 Thread Mark Lawrence
On 08/07/2015 22:15, Chris Angelico wrote: On Thu, Jul 9, 2015 at 7:12 AM, Mark Lawrence wrote: Would you please be kind enough to quote context when replying. Pythonistas might be smart, but apart from myself and Steven D'Aprano I'm not aware of anyone who can read minds. Thank you. Hey! I'

Re: Idle Not Working.

2015-07-08 Thread Ian Kelly
On Wed, Jul 8, 2015 at 2:57 PM, Terry Reedy wrote: > On 7/8/2015 2:07 PM, Steve Burrus wrote: >> Now I am using both 32 and 64 bit versions of Idle > > There are no such things. Idle is python code that runs on whatever version > of Python you have. As far as I know, you cannot easily install bot

Re: Idle Not Working.

2015-07-08 Thread Chris Angelico
On Thu, Jul 9, 2015 at 7:12 AM, Mark Lawrence wrote: > Would you please be kind enough to quote context when replying. Pythonistas > might be smart, but apart from myself and Steven D'Aprano I'm not aware of > anyone who can read minds. Thank you. Hey! I'm right here... ChrisA -- https://mail.

Re: Idle Not Working.

2015-07-08 Thread Mark Lawrence
On 08/07/2015 19:44, sohcahto...@gmail.com wrote: Help us help you. "every time I try to bring up Idle I cannot" does not tell us the problem. Do you get error messages? What do they say? Would you please be kind enough to quote context when replying. Pythonistas might be smart, but apart

Re: Idle Not Working.

2015-07-08 Thread Terry Reedy
On 7/8/2015 2:07 PM, Steve Burrus wrote: I need some deg4ree of help w ith the Idle Python Editor. I am using 64 bit win 10 beta preview I am waiting for MS to install the activate the actual release on my personal machine. > and every time that I try to bring up Idle I cannot! Does python

Re: Idle Not Working.

2015-07-08 Thread sohcahtoa82
Help us help you. "every time I try to bring up Idle I cannot" does not tell us the problem. Do you get error messages? What do they say? -- https://mail.python.org/mailman/listinfo/python-list

Re: IDLE Restoration

2015-05-08 Thread Terry Reedy
On 5/8/2015 11:26 AM, subhabrata.bane...@gmail.com wrote: Dear Group, In many applications there is a facility to restore its previous sessions, especially if they close accidentally. Does IDLE have any such facility? No. You are prompted to close unsaved files. Filenames are saved in Rece

Re: IDLE Restoration

2015-05-08 Thread Chris Angelico
On Sat, May 9, 2015 at 5:12 AM, Thomas 'PointedEars' Lahn wrote: > Chris Angelico wrote: > >> […] Thomas 'PointedEars' Lahn […] wrote: >>> Chris Angelico wrote: Are you hoping to have the IDLE editor restore the fact that you had files X, Y, and Z open, or are you hoping to have the inte

Re: IDLE Restoration

2015-05-08 Thread Thomas 'PointedEars' Lahn
Chris Angelico wrote: > […] Thomas 'PointedEars' Lahn […] wrote: >> Chris Angelico wrote: >>> Are you hoping to have the IDLE editor restore the fact that you had >>> files X, Y, and Z open, or are you hoping to have the interactive >>> interpreter retain your entire history of commands and their

Re: IDLE Restoration

2015-05-08 Thread Thomas 'PointedEars' Lahn
Chris Angelico wrote: > Are you hoping to have the IDLE editor restore the fact that you had > files X, Y, and Z open, or are you hoping to have the interactive > interpreter retain your entire history of commands and their results? > The former is reasonably plausible (and may well be possible al

Re: IDLE Restoration

2015-05-08 Thread Chris Angelico
On Sat, May 9, 2015 at 2:06 AM, Thomas 'PointedEars' Lahn wrote: > Chris Angelico wrote: > >> Are you hoping to have the IDLE editor restore the fact that you had >> files X, Y, and Z open, or are you hoping to have the interactive >> interpreter retain your entire history of commands and their re

Re: IDLE Restoration

2015-05-08 Thread Chris Angelico
On Sat, May 9, 2015 at 1:26 AM, wrote: > In many applications there is a facility to restore its previous sessions, > especially if they close accidentally. > > Does IDLE have any such facility? > If it is there, how may I use it? > > If someone may kindly suggest it. Generally the notion of se

Re: Idle - ImportError: No module named numpy

2015-03-09 Thread Tim Golden
On 09/03/2015 14:15, Dave Angel wrote: > On 03/07/2015 02:15 PM, Markos wrote: >> Hi, >> >> I'm beginning to study the numpy. >> >> When I open a terminal (Debian Squeeze) and run the python interpreter >> the command "import numpy as np" run without errors. >> >> But when I run the same command on

Re: Idle - ImportError: No module named numpy

2015-03-09 Thread Dave Angel
On 03/07/2015 02:15 PM, Markos wrote: Hi, I'm beginning to study the numpy. When I open a terminal (Debian Squeeze) and run the python interpreter the command "import numpy as np" run without errors. But when I run the same command on idle3 the following error appears. import numpy as np T

Re: idle feature request

2015-02-11 Thread Terry Reedy
On 2/11/2015 9:48 PM, Rustom Mody wrote: On Thursday, February 12, 2015 at 7:57:48 AM UTC+5:30, Terry Reedy wrote: If one saves the shell with 'save as', the filename is added to the title bar. If one does something more, the name in bracketed with *s to indicate the the memory buffer has bee

Re: idle feature request

2015-02-11 Thread Mark Lawrence
On 12/02/2015 02:48, Rustom Mody wrote: [BTW I have some other feature requests too. Is this the best forum to talk of them? And thanks for your work on idle :-) ] Here is as good a place as any although there is an IDLE development mailing list at https://mail.python.org/mailman/listinfo/i

Re: idle feature request

2015-02-11 Thread Chris Angelico
On Thu, Feb 12, 2015 at 1:27 PM, Terry Reedy wrote: > However, when one quits, then, unlike a regular edit window, there is no > ask-to-save warning. Is this what you want? This would seem reasonable and > likely easy. (I would, however, not want the prompt when the buffer has not > been saved

Re: idle feature request

2015-02-11 Thread Rustom Mody
On Thursday, February 12, 2015 at 7:57:48 AM UTC+5:30, Terry Reedy wrote: > On 2/11/2015 1:00 PM, Mark Lawrence wrote: > > On 11/02/2015 13:11, Rustom Mody wrote: > >> Context: > >> I am using idle for taking python classes. > > Teaching or taking? Teaching -- I would like to mail¹ students the i

Re: idle feature request

2015-02-11 Thread Terry Reedy
On 2/11/2015 1:00 PM, Mark Lawrence wrote: On 11/02/2015 13:11, Rustom Mody wrote: Context: I am using idle for taking python classes. Teaching or taking? Finish the class and run out usually in a hurry and forget to save the idle interaction window. Do you mean the shell window? Would l

Re: idle feature request

2015-02-11 Thread Mark Lawrence
On 11/02/2015 13:11, Rustom Mody wrote: Context: I am using idle for taking python classes. Finish the class and run out usually in a hurry and forget to save the idle interaction window. Would like to save it so that I can mail it to the students. In emacs I could set a hook to make arbitrary

Re: idle feature request

2015-02-11 Thread Fabien
On 11.02.2015 14:29, Rustom Mody wrote: So getting up and running with minimal headache is an important priority. Yes true. I consider Notebooks as a way to do "frontal" teaching, not necessarily usefull if students have to redo what you are doing on screen. For that, notebooks are rather pro

Re: idle feature request

2015-02-11 Thread Rustom Mody
On Wednesday, February 11, 2015 at 6:50:35 PM UTC+5:30, Fabien wrote: > On 11.02.2015 14:11, Rustom Mody wrote: > > Context: > > I am using idle for taking python classes. > > I know this is not your question, but: have you considered using iPython > notebooks for teaching? They save automaticall

Re: idle feature request

2015-02-11 Thread Fabien
On 11.02.2015 14:11, Rustom Mody wrote: Context: I am using idle for taking python classes. I know this is not your question, but: have you considered using iPython notebooks for teaching? They save automatically, look nice, and can be sent as code, html, rst, ... Fabien -- https://mail.py

Re: IDLE has suddenly become FAWLTY - so should I be hitting it with a big stick, or what?

2014-12-23 Thread Rick Johnson
On Tuesday, August 26, 2014 7:01:22 PM UTC-5, Steven D'Aprano wrote: > I think it is a serious design flaw that the standard > library and user code co-exist in a single namespace. I'm not sure if your wording is just clumsily and you meant: """ I think it is a serious design flaw that the

  1   2   3   4   5   6   >