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
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
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
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
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
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
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
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,
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
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
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
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
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
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-
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
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
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
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
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
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
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
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
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
> 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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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`.
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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'
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
&
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
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
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
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),
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
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
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
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 - 100 of 2087 matches
Mail list logo