Steven D'Aprano <steve+pyt...@pearwood.info> added the comment:

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

----------
nosy: +steven.daprano

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue43211>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to