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.

Author steven.daprano
Recipients diasybarrett, ned.deily, ronaldoussoren, steven.daprano
Date 2021-02-13.07:50:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1613202627.38.0.854998518619.issue43211@roundup.psfhosted.org>
In-reply-to
Content
Hi Diasy, welcome!

Please don't post screen shots of code. That makes it difficult or impossible for the blind and visually impaired to contribute, and it means that we have to retype your code from scratch to run it, which may introduce new errors. Instead, please copy and paste the code as text into your bug report, or attach it as a .py file.

I'm not entirely sure what your bug report is here. Your program is stuck in a loop:

    while True:
        wn.update

which does nothing and goes nowhere. (By the way, I think you forgot to call the update method: it should be `wn.update()` with round brackets.)

Does the program respond to you typing Ctrl-C? You might need to do that from your command line or IDE, the "Pong" window itself probably won't respond to it.

So I'm not sure what bug you think you have found. It looks like it is probably running normally to me.

(Disclaimer: I am not using Mac OS, so perhaps the behaviour is different on my machine than on yours.)
History
Date User Action Args
2021-02-13 07:50:27steven.dapranosetrecipients: + steven.daprano, ronaldoussoren, ned.deily, diasybarrett
2021-02-13 07:50:27steven.dapranosetmessageid: <1613202627.38.0.854998518619.issue43211@roundup.psfhosted.org>
2021-02-13 07:50:27steven.dapranolinkissue43211 messages
2021-02-13 07:50:26steven.dapranocreate