Re: Seeking Assistance with Python's IDLE for Blind Users

2024-11-12 Thread Jacob Kruger via Python-list
quot;Resistance is futile!...Acceptance is versatile..." On 2024/11/11 00:28, Jeff via Python-list wrote: Dear Python Users Group, I am currently learning Python. I am blind and use the JAWS screen reader to assist me. I am trying to use Python's IDLE editor but find it quite chal

Re: Seeking Assistance with Python's IDLE for Blind Users

2024-11-11 Thread Loris Bennett via Python-list
Dear Jeff, writes: > Dear Python Users Group, > > > > I am currently learning Python. I am blind and use the JAWS screen reader to > assist me. I am trying to use Python's IDLE editor but find it quite > challenging. When I move my cursor to a line of code, it reads

Seeking Assistance with Python's IDLE for Blind Users

2024-11-11 Thread Jeff via Python-list
Dear Python Users Group, I am currently learning Python. I am blind and use the JAWS screen reader to assist me. I am trying to use Python's IDLE editor but find it quite challenging. When I move my cursor to a line of code, it reads out the letters or words from the line above, which mak

Re: IDLE: clearing the screen

2024-06-10 Thread Michael F. Stemper via Python-list
e at the very top of the screen, and the ">>>" prompt appears on the SECOND line. (This blank line is because the IDLE prints the blank value returned by "return ''" and adds a newline to it, as it does when printing the value of any expression.) Why hav

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
t; it clears the screen.  For me on a Mac it clears the terminal screen that I used to launch IDLE and prints a single blank line on the IDLE shell. (And I have to use "clear" instead of "cls" of course. A quick Google suggests that printing Ctrl-L (formfeed?) might be a platfo

Re: IDLE: clearing the screen

2024-06-08 Thread Rob Cliffe via Python-list
ot;>>>" prompt appears on the SECOND line. (This blank line is because the IDLE prints the blank value returned by "return ''" and adds a newline to it, as it does when printing the value of any expression.) Best wishes Rob Cliffe -- https://mail.python.org/mailman/listinfo/python-list

Re: Fwd: IDLE: clearing the screen

2024-06-05 Thread Rob Cliffe via Python-list
result, in this case 0.  When you evaluate an expression in the IDE, the IDE prints the result.  So without the "x=" you get an extra line at the top of the screen containing "0".) Not if it's in a function, because the IDLE prints the result if it isn't None,

Re: Fwd: IDLE: clearing the screen

2024-06-04 Thread Cameron Simpson via Python-list
an expression in the IDE, the IDE prints the result.  So without the "x=" you get an extra line at the top of the screen containing "0".) Not if it's in a function, because the IDLE prints the result if it isn't None, and your function returns None. So: def cl

Fwd: IDLE: clearing the screen

2024-06-04 Thread Rob Cliffe via Python-list
Welcome to Python!  A great language for program development. Answers might be platform-dependent (are you using WIndows, Linux, etc.). However, the following works for me on WIndows.  You can put it in the startup.py file so you don't have to type it every time you start up the IDLE. i

IDLE: clearing the screen

2024-06-04 Thread Cave Man via Python-list
Hello everyone, I am new to Python, and I have been using IDLE (v3.10.11) to run small Python code. However, I have seen that the output scrolls to the bottom in the output window. Is there a way to clear the output window (something like cls in command prompt or clear in terminal), so

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
ric. Odd name for an editor? Well, it continues the long pun history in the Python world (Eric Idle... get it?). It has search history, among many other things, I think once it was considered to be sort of IDLE++, but it's grown to a lot more than that. Not saying Eric is better-than-

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

IDLE editor suggestion.

2023-12-12 Thread Steve GS via Python-list
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 select the previous searches rather than having to enter it

Re: Why does IDLE use a subprocess?

2023-05-31 Thread James Schaffler via Python-list
On Tuesday, May 30th, 2023 at 10:18 PM, Chris Angelico wrote: > Yep, what you're seeing there is the namespace and nothing else. But > if you mess with an actual builtin object, it'll be changed for the > other interpreter too. > > > > > import ctypes > > > > ctypes.cast(id(42), ctypes.POINTER(cty

Re: Why does IDLE use a subprocess?

2023-05-30 Thread Chris Angelico
On Wed, 31 May 2023 at 12:03, James Schaffler via Python-list wrote: > > On Tuesday, May 30th, 2023 at 9:14 PM, Greg Ewing wrote: > > Globals you create by executing code in the REPL have their own > > namespace. But everything else is shared -- builtins, imported > > Python modules, imported C ex

Re: Why does IDLE use a subprocess?

2023-05-30 Thread James Schaffler via Python-list
On Tuesday, May 30th, 2023 at 9:14 PM, Greg Ewing wrote: > Globals you create by executing code in the REPL have their own > namespace. But everything else is shared -- builtins, imported > Python modules, imported C extension modules, etc. etc. Thanks for the explanation. Could you elaborate on p

Re: Why does IDLE use a subprocess?

2023-05-30 Thread Greg Ewing via Python-list
CPython is structured makes that very difficult to achieve, and as far as I know it's not there yet. In the case of IDLE, there's really no reason not to use a subprocess[1]. It's easy and guarantees 100% isolation. [1] Well, mostly. There used to be a small hitch on Windows with the defa

Re: Why does IDLE use a subprocess?

2023-05-30 Thread Chris Angelico
On Wed, 31 May 2023 at 08:16, Barry wrote: > I don’t think it security but robustness that needs the subprocess. > > Also if your code use tk then it would conflict with idle’s use of tk. > From my memory, it's precisely this - it's much MUCH easier to allow you to use Tk in your own program with

Re: Why does IDLE use a subprocess?

2023-05-30 Thread Barry
> On 30 May 2023, at 21:10, James Schaffler via Python-list > wrote: > > Originally posted to idle-dev, but thought this might be a better place. Let > me know if it isn't. > > Hi, > > I was curious about the internals of IDLE, and noticed that IDLE

Why does IDLE use a subprocess?

2023-05-30 Thread James Schaffler via Python-list
Originally posted to idle-dev, but thought this might be a better place. Let me know if it isn't. Hi, I was curious about the internals of IDLE, and noticed that IDLE uses executes user code in a "subprocess" that's separate from the Python interpreter that is running IDL

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 writi

Re: IDLE "Codepage" Switching?

2023-01-18 Thread Peter J. Holzer
a little further. > > > > 1. I produced the following IDLE log: > > > > > > > mylongstr = "" > > > > > for thisCP in range (1, 256): > > mylongstr += chr (thisCP) + " " + str (ord (chr (thisCP))) + ", " > > &g

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): m

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 (this

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, No

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 &q

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 in

IDLE "Codepage" Switching?

2023-01-17 Thread Stephen Tucker
I have four questions. 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.) 2. Does the IDLE in Python 3.x behave the same way? 3. If it does, is this as it should behave? 4

Bug report - Python 3.10 from Microsoft Store - IDLE won't start

2022-11-29 Thread Johan Gunnarsson via Python-list
Hello, IDLE won't start if ver. 3.10 is installed from Microsoft Store. 3.9 works just fine. Thanks in advance! Johan Gunnarsson Lunds universitet Medicinska fakulteten Bibliotek & IKT Box 118, 221 00 Lund<https://webmail.lu.se/owa/> Besöksadress: Sölvegatan 19, 22

Re: Problems with IDLE in Windows 8.1 and installer x86 Version 3.10.8

2022-11-14 Thread darkstone
Dear list, >>So please check that you are running the right version of Python when >>you type "python". If i type “python”, it is C:\>python -V Python 3.11.0 Von: Thomas Passin Gesendet: ‎Sonntag‎, ‎13‎. ‎November‎ ‎2022 ‎16‎:‎18 An: darkst...@o2online.de On 11/13/2022

Re: Problems with IDLE in Windows 8.1 and installer x86 Version 3.10.8

2022-11-12 Thread Eryk Sun
On 11/12/22, darkst...@o2online.de wrote: > import _tkinter > Traceback (most recent call last): > File "", line 1, in > ImportError: DLL load failed while importing _tkinter: Das angegebene Modul > wurd > e nicht gefunden. Loading the extension module "_tkinter.pyd" tries to load two TCL

Re: Problems with IDLE in Windows 8.1 and installer x86 Version 3.10.8

2022-11-12 Thread Thomas Passin
n 3.8.9.  The available releases are all here: https://www.python.org/downloads/windows/ If this works, wonderful!  If it does not, I'm out of ideas for the moment. On 11/11/2022 4:18 PM, darkst...@o2online.de wrote: > Hello, > > yes, its a Windows 8.1 with 32 bit. I have found my

Re: Problems with IDLE in Windows 8.1 and installer x86 Version 3.10.8

2022-11-12 Thread Thomas Passin
of ideas for the moment. On 11/11/2022 4:18 PM, darkst...@o2online.de wrote: Hello, yes, its a Windows 8.1 with 32 bit. I have found my Installation ordner. If I type python ** IDLE can't import Tkinter. Your Python may not configured for TK. ** So I tried this: >>> impo

Re: Problems with IDLE in Windows 8.1 and installer x86 Version 3.10.8

2022-11-11 Thread Eryk Sun
On 11/11/22, darkst...@o2online.de wrote: > > What can I do for the next step to find, why IDLE isn’t working? The question is why tkinter isn't working. IDLE not working is just a symptom of the underlying problem. In the command prompt, run 32-bit Python 3.10 via `py -3.10-32`.

Re: Problems with IDLE in Windows 8.1 and installer x86 Version 3.10.8

2022-11-09 Thread Thomas Passin
is not helpful.  Are there error messages displayed on the terminal?  How did you try to start it?  Does Python run at all? A Python installation normally includes a batch file that launches idle.  This batch file may not be on your path for one reason or another.  If so, it would not run when

Re: Problems with IDLE in Windows 8.1 and installer x86 Version 3.10.8

2022-11-09 Thread Eryk Sun
On 11/9/22, darkst...@o2online.de wrote: > Is there no one who can help? If you can't run IDLE via `py -3.10-32 -m idlelib`, then something isn't installed properly. You reported an error that IDLE fails to load because importing tkinter fails. Did you try `import tkinter` in the

Re: Problems with IDLE in Windows 8.1 and installer x86 Version 3.10.8

2022-11-09 Thread Dennis Lee Bieber
le off into some archive and don't touch it again unless you need to reinstall or repair the existing install. Do a search for idle.* Windows PowerShell Copyright (C) Microsoft Corporation. All rights reserved. Try the new cross-platform PowerShell https://aka.ms/pscore6 PS C

Re: Problems with IDLE in Windows 8.1 and installer x86 Version 3.10.8

2022-11-09 Thread Thomas Passin
from the list is that there have not been many details given. "Doesn't start" is not helpful. Are there error messages displayed on the terminal? How did you try to start it? Does Python run at all? A Python installation normally includes a batch file that launches idle. Thi

Re: Problems with IDLE in Windows 8.1 and installer x86 Version 3.10.8

2022-11-09 Thread darkstone
Is there no one who can help? Von: darkst...@o2online.de Gesendet: ‎Freitag‎, ‎4‎. ‎November‎ ‎2022 ‎15‎:‎10 An: Eryk Sun Cc: python-list@python.org Yes, there is always the message “modified successfull”, “installed sucessfully”, but IDLE does’t start. I tried it with the newer

Re: Problems with IDLE in Windows 8.1 and installer x86 Version 3.10.8

2022-11-04 Thread darkstone
Yes, there is always the message “modified successfull”, “installed sucessfully”, but IDLE does’t start. I tried it with the newer Version, too. Ist 3.11.0 for 32 bit, but it also doesn’t work. Do you have other suggetions, that it works? Von: Eryk Sun Gesendet: ‎Donnerstag‎, ‎3‎

Re: Problems with IDLE in Windows 8.1 and installer x86 Version 3.10.8

2022-11-03 Thread Eryk Sun
On 11/3/22, darkst...@o2online.de wrote: > Is there a reason, why it is not installed? Its the same check mark in the > installer like IDLE… Did you try what I suggested? Modify the installation to remove the tkinter/IDLE component. Then modify it again to select the component to be reins

Re: Problems with IDLE in Windows 8.1 and installer x86 Version 3.10.8

2022-11-01 Thread Eryk Sun
On 11/1/22, Nithish Ramasamy wrote: > > pip install tkinter > Wait some minutes to install tkinter There is no tkinter package on PyPI. It's part of the standard library and included with the python.org installer as an optional component. -- https://mail.python.org/mailman/listinfo/python-list

Re: Problems with IDLE in Windows 8.1 and installer x86 Version 3.10.8

2022-11-01 Thread Eryk Sun
On 11/1/22, darkst...@o2online.de wrote: > > **IDLE can’t Import TKINTER > > Python may not be configured for TK** > > Checkmark for TK is set in the Installation Progress. What went wrong and ho > can I fix it? Run the following command to check whether the Import

Re: Problems with IDLE in Windows 8.1 and installer x86 Version 3.10.8

2022-10-31 Thread Eryk Sun
On 10/31/22, darkst...@o2online.de wrote: > > I installed the Standard Distribution from python.org again, and i ensured, > that the checkmark test Suite is enabled. Idle does’nt start. The installer > says “Installation successfully” at the end. > > What went wrong and how can

Re: Problems with IDLE in Windows 8.1 and installer x86 Version 3.10.8

2022-10-31 Thread Eryk Sun
On 10/31/22, darkst...@o2online.de wrote: > > i uninstalled this, because my Idle doesn’t start by clicking on the Icon. > Are there any Solutions for the problem? If it's the standard distribution from python.org, run the installer again, and ensure that the test suite is install

Problems with IDLE in Windows 8.1 and installer x86 Version 3.10.8

2022-10-31 Thread darkstone
Dear Sir or Madam, i uninstalled this, because my Idle doesn’t start by clicking on the Icon. Are there any Solutions for the problem? Thanks, André -- https://mail.python.org/mailman/listinfo/python-list

Re: when I open a python idle it's constantly showing subprocess connection error

2022-09-20 Thread Mats Wichmann
org/3/library/idle.html#startup-failure Hint: you usually named a file you were working on the same as something IDLE uses, that's the usual cause these days. -- https://mail.python.org/mailman/listinfo/python-list

when I open a python idle it's constantly showing subprocess connection error

2022-09-20 Thread asika
    Sent from [1]Mail for Windows   References Visible links 1. https://go.microsoft.com/fwlink/?LinkId=550986 -- https://mail.python.org/mailman/listinfo/python-list

Re: Help: Unable to find IDLE folder inside the Python Lib folder

2022-03-05 Thread MRAB
On 2022-03-05 20:36, Deji Olofinboba via Python-list wrote: Dear Python officer, Please I am new to programming. I have justinstalled the python 3.10.2. After the installation, I was able to locate thePython Shell but unable to locate IDLE despite checking it before downloading in the python

Help: Unable to find IDLE folder inside the Python Lib folder

2022-03-05 Thread Deji Olofinboba via Python-list
Dear Python officer, Please I am new to programming. I have justinstalled the python 3.10.2. After the installation, I was able to locate thePython Shell but unable to locate IDLE despite checking it before downloading in the python installation folder. I also reinstalled Python and checked

Re: how I can get python idle?

2021-12-02 Thread Mats Wichmann
On 12/2/21 13:37, nikos petsios wrote: See here: https://docs.python.org/3/using/ If you're on windows you likely have it if you installed Python. -- https://mail.python.org/mailman/listinfo/python-list

how I can get python idle?

2021-12-02 Thread nikos petsios
    Sent from [1]Mail for Windows 10   [2][IMG] Virus-free. [3]www.avast.com References Visible links 1. https://go.microsoft.com/fwlink/?LinkId=550986 2. https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient&u

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'

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 Wi

IDLE is not working after Python installation .

2021-06-21 Thread Ayaana Soni
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! -- https://mail.python.org/mailman/listinfo/python-list

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

IDLE python

2021-03-11 Thread Yoosuf Oluwatosin via Python-list
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/idle.html#startup-failure. I have gone to the page and followed

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 Mu

Idle Python issue

2021-02-24 Thread jak
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: :-) that is this: 😊 Try to write this in Idle: "😊".encode('utf8') b'\xf0\x9f\x98\x8a' no

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

IDLE

2021-02-16 Thread Will Anderson
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 work. Please help.     Will

Re: Files can only be modified in IDLE, but not via Powershell

2021-02-09 Thread Stefan Ritter
perfectly on my laptop. On my desktop it works only if i run it in IDLE, the text appears afterwards in the file . However it does not work if run it in Powershell (or anything else), there are no changes made in the file. I do not understand why this is the case. Python version, installation path

Re: Files can only be modified in IDLE, but not via Powershell

2021-02-09 Thread Dan Stromberg
On Mon, Feb 8, 2021 at 4:22 PM Stefan Ritter wrote: > > Hi, > > It would be highly appreciated if you could offer me some advice to > solve a problem I'm currently facing: > > afterwards in the file . However it does not work if run it in > Powershell (or anything else), there are no changes ma

Re: Files can only be modified in IDLE, but not via Powershell

2021-02-09 Thread Alan Gauld via Python-list
On 08/02/2021 21:33, Stefan Ritter wrote: > I have a Windows 10 ADM64 desktop and a Windows 10 AMD64 Laptop. So notionally identical. > I wrote some code to insert text in a .txt-file. It works perfectly on > my laptop. > > On my desktop it works only if i run it in IDLE, t

Re: Files can only be modified in IDLE, but not via Powershell

2021-02-09 Thread Terry Reedy
on my laptop. On my desktop it works only if i run it in IDLE, the text appears afterwards in the file . However it does not work if run it in Powershell (or anything else), there are no changes made in the file. Find the minimum code that exhibits a behavior difference. It should be short enou

Re: Files can only be modified in IDLE, but not via Powershell

2021-02-09 Thread Peter Otten
on my laptop. On my desktop it works only if i run it in IDLE, the text appears afterwards in the file . However it does not work if run it in Powershell (or anything else), there are no changes made in the file. I do not understand why this is the case. Python version, installation paths and use

Re: Files can only be modified in IDLE, but not via Powershell

2021-02-08 Thread MRAB
on my laptop. On my desktop it works only if i run it in IDLE, the text appears afterwards in the file . However it does not work if run it in Powershell (or anything else), there are no changes made in the file. I do not understand why this is the case. Python version, installation paths and use

Files can only be modified in IDLE, but not via Powershell

2021-02-08 Thread Stefan Ritter
if i run it in IDLE, the text appears afterwards in the file . However it does not work if run it in Powershell (or anything else), there are no changes made in the file. I do not understand why this is the case. Python version, installation paths and user are the same on desktop and laptop. I searc

Re: Python idle did not open even after trying many times

2020-12-09 Thread Terry Reedy
On 12/9/2020 11:08 AM, avinash gaur wrote: Dear Sir/Mam, I am facing a problem with Python Idle. I am unable to open python idle even after clicking on it so many times. I am using Python 3.7 on Windows. What are you clicking on? Did IDLE work before? (If you just installed 3.7, why?) Can

Python idle did not open even after trying many times

2020-12-09 Thread avinash gaur
Dear Sir/Mam, I am facing a problem with Python Idle. I am unable to open python idle even after clicking on it so many times. I am using Python 3.7 on Windows. I have already installed and uninstalled python 3.7 so many times. But it is not working Any help will be appreciated Thanking you

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

IDLE error

2020-12-01 Thread Álvaro d'Ors
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. -- Nestares D. Álvaro -- https://mail.python.org/mailman/listinfo/python-list

Re: Weird behavior for IDLE...

2020-10-13 Thread Terry Reedy
On 10/13/2020 4:51 AM, Steve wrote: Why does IDLE always open with the lowest three lines of the window end up hidden below the bottom of the screen behind the task bar? Every time I use it, I have to stop and grab the top of the window and drag it up to see the line and row information. I

Weird behavior for IDLE...

2020-10-13 Thread Steve
Why does IDLE always open with the lowest three lines of the window end up hidden below the bottom of the screen behind the task bar? Every time I use it, I have to stop and grab the top of the window and drag it up to see the line and row information. I explored the Options/Configure IDLE but

Re: IDLE: New Feature?

2020-08-11 Thread Terry Reedy
pull-down history list for Find' is too general." This is typical of proposals, especially for IDLE it seems. Should there be a list only for Find and not for Find/Replace and Find in Files? Makes no sense. A separate list for each? What if you start with Find and then realize you

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

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 > mor

IDLE: New Feature?

2020-08-09 Thread Steve
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 rather spend my brain cells and

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

IDLE 3.8.3 -- bug report

2020-08-03 Thread Halvard Tislavoll
fault, 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 &#x

Re: Having trouble importing the python turtle on idle

2020-05-17 Thread Terry Reedy
On 5/16/2020 8:58 AM, KINGHAMED io wrote: Hello my name is Hamed I have purchased python for kids. I have installed idle and Python launcher 3.8.3 with my 11 inch MacBook Air (Mac OS Sierra)version 10.12.6 I have followed all the instructions all the way through for installation I even

Re: Having trouble importing the python turtle on idle

2020-05-16 Thread Souvik Dutta
What is the error? Souvik flutter dev On Sat, May 16, 2020, 8:27 PM KINGHAMED io wrote: > On Sat, 16 May 2020 at 4:38 PM KINGHAMED io > wrote: > > > Hello my name is Hamed > > I have purchased python for kids. > > I have installed idle and Python launcher 3.8.3 with

Re: Having trouble importing the python turtle on idle

2020-05-16 Thread Bischoop
On 2020-05-16, KINGHAMED io wrote: > On Sat, 16 May 2020 at 4:38 PM KINGHAMED io > wrote: > >> Hello my name is Hamed >> I have purchased python for kids. >> I have installed idle and Python launcher 3.8.3 with my 11 inch MacBook >> Air (Mac OS Sierra)version 1

Re: Having trouble importing the python turtle on idle

2020-05-16 Thread KINGHAMED io
On Sat, 16 May 2020 at 4:38 PM KINGHAMED io wrote: > Hello my name is Hamed > I have purchased python for kids. > I have installed idle and Python launcher 3.8.3 with my 11 inch MacBook > Air (Mac OS Sierra)version 10.12.6 > I have followed all the instructions all the

Re: PROBLEM WITH PYTHON IDLE

2020-05-14 Thread Mats Wichmann
On 5/14/20 5:15 AM, aduojo samson wrote: > Hello, my name is Samson Haruna and I am from Nigeria.I have a problem with > my python 3.8, any time I click on it to write my python code I get this > error message "IDLE subprocess didn't make connection". I have uninstalled &

Re: PROBLEM WITH PYTHON IDLE

2020-05-14 Thread Souvik Dutta
ite my python code I get this > error message "IDLE subprocess didn't make connection". I have uninstalled > and reinstalled several times, I have even deleted and downloaded a new > one, it works for some time then it stops giving me the above mentioned > error message. w

PROBLEM WITH PYTHON IDLE

2020-05-14 Thread aduojo samson
Hello, my name is Samson Haruna and I am from Nigeria.I have a problem with my python 3.8, any time I click on it to write my python code I get this error message "IDLE subprocess didn't make connection". I have uninstalled and reinstalled several times, I have even deleted and d

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 ch

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),

Idle not opening

2020-05-06 Thread Rance Victor
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. Looking forward to a fix please. Thanks -- https://mail.python.org/mailman/listinfo/python-list

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

IDLE, TCP/IP problem.

2020-01-16 Thread Muju's message
Sent from Mail for Windows 10 When I open IDLE a popup appears, which says “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. Run IDLE with the -n command line switch to

Re: Funny behavior of IDLE 3.7.0

2019-11-12 Thread Chris Angelico
gt; >>> > >>> Newer Pythons are happy with this example, but if you replace the > >>> error with something else - say, f'{i+}' - then the same phenomenon > >>> occurs. Command-line Python reports the error on line 1 of > >>> "&

  1   2   3   4   5   6   7   8   9   10   >