This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: unususal behavior
Type: behavior Stage: resolved
Components: Windows Versions: Python 3.7
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: Gaurav Kumar Pandit, eric.smith, paul.moore, steve.dower, steven.daprano, tim.golden, zach.ware
Priority: normal Keywords:

Created on 2019-09-07 07:03 by Gaurav Kumar Pandit, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
test.py Gaurav Kumar Pandit, 2019-09-07 07:03
Messages (6)
msg351286 - (view) Author: Gaurav Kumar Pandit (Gaurav Kumar Pandit) Date: 2019-09-07 07:03
when I run the programme the cursur is blinking and is taking many number of inputs but in the source code I have not written any syntax for taking input
msg351288 - (view) Author: Eric V. Smith (eric.smith) * (Python committer) Date: 2019-09-07 07:08
This forum is for reporting bugs in python, not for getting help with writing python programs.

I suggest you ask about this on the python-tutor mailing list: https://mail.python.org/mailman/listinfo/tutor

Good luck!
msg351290 - (view) Author: Gaurav Kumar Pandit (Gaurav Kumar Pandit) Date: 2019-09-07 07:10
The programme has detected a bug in python .For This reson I am using c++ not python.
Useless python!!!! bsdk

Sent from Mail for Windows 10

From: Eric V. Smith
Sent: 07 September 2019 12:38 PM
To: grvkmrpandit@gmail.com
Subject: [issue38048] unususal behavior

Eric V. Smith <eric@trueblade.com> added the comment:

This forum is for reporting bugs in python, not for getting help with writing python programs.

I suggest you ask about this on the python-tutor mailing list: https://mail.python.org/mailman/listinfo/tutor

Good luck!

----------
nosy: +eric.smith
resolution:  -> not a bug
stage:  -> resolved
status: open -> closed

_______________________________________
Python tracker <report@bugs.python.org>
<https://bugs.python.org/issue38048>
_______________________________________
msg351294 - (view) Author: Steven D'Aprano (steven.daprano) * (Python committer) Date: 2019-09-07 07:50
Hi Gaurav, 

It is very unlikely that you have "discovered a bug in Python". Millions of people use Python every day, and the chances that you will have noticed something that everyone else has missed is tiny.

More likely you have misunderstood something. 

Unfortunately, it is impossible to diagnose your issue with the information you have provided. But my guess is that it has something to do with the terminal or IDE you are using.

As Eric said, you should take this question to another forum, explain how you are running your code (in IDLE, Jupyter, the Windows command line, a Linux terminal, an IDE like Spyder, PyCharm, etc...) and see if somebody can either explain what is happening or confirm that it is an actual bug in the interpreter on your system.

This is not a help desk or forum, we're not going to diagnose your issue for you, but the Python community is very large and there are plenty of places that will be happy to help.
msg351311 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2019-09-07 20:54
To reiterate, there is no bug in Python here.  The code that you attached here has a typo that turns this example into an infinite loop, and the Windows Command Prompt will happily take any input and echo it, even though Python is not actually consuming any of it.
msg351317 - (view) Author: Gaurav Kumar Pandit (Gaurav Kumar Pandit) Date: 2019-09-08 07:02
Oh thanks.May I know the typo error

Sent from Mail for Windows 10

From: Zachary Ware
Sent: 08 September 2019 02:24 AM
To: grvkmrpandit@gmail.com
Subject: [issue38048] unususal behavior

Zachary Ware <zachary.ware@gmail.com> added the comment:

To reiterate, there is no bug in Python here.  The code that you attached here has a typo that turns this example into an infinite loop, and the Windows Command Prompt will happily take any input and echo it, even though Python is not actually consuming any of it.

----------

_______________________________________
Python tracker <report@bugs.python.org>
<https://bugs.python.org/issue38048>
_______________________________________
History
Date User Action Args
2022-04-11 14:59:19adminsetgithub: 82229
2019-09-08 07:02:54Gaurav Kumar Panditsetmessages: + msg351317
2019-09-07 20:54:21zach.waresetmessages: + msg351311
2019-09-07 07:50:10steven.dapranosetnosy: + steven.daprano
messages: + msg351294
2019-09-07 07:10:29Gaurav Kumar Panditsetmessages: + msg351290
2019-09-07 07:08:12eric.smithsetstatus: open -> closed

nosy: + eric.smith
messages: + msg351288

resolution: not a bug
stage: resolved
2019-09-07 07:03:08Gaurav Kumar Panditcreate