From: john doe <ifvwm@yandex.com>
To: help-gnu-emacs@gnu.org
Subject: emacs 26.1 python-mode bug report C-c C-c won't work at the second time
Date: Wed, 22 Aug 2018 15:52:09 +0900 [thread overview]
Message-ID: <25628761534920729@myt4-174696c9aa9d.qloud-c.yandex.net> (raw)
I use emacs open a python-tkinter-test.py, and press C-c C-c it will
pop a tk window, then i close this window,
but when i press the second C-c C-c it shows nothings, *Python* is
still exist, python is still in process list,
but *Python* won't run anything what it will receive any more, A it
seems emacs don't think the last one is over, or the new one
doesn't have an end character,
A
this is the python code:
from Tkinter import *
A
root = Tk()
topFrame = Frame(root)
topFrame.pack(side=TOP)
A
middleFrame = Frame(root)
middleFrame.pack(side=RIGHT)
A
bottomFrame = Frame(root, bg="green")
bottomFrame.pack(side=BOTTOM)
A
topFrame_Label = Label(topFrame, text="Welcome to Python GUI(Top
Frame)")
topFrame_Label.pack()
A
middleFrame_Label = Label(middleFrame, text="Welcome to Python
GUI(Middle Frame)")
middleFrame_Label.pack()
A
bottomFrame_Label = Label(bottomFrame, text="Welcome to Python
GUI(Bottom Frame)")
bottomFrame_Label.pack()
A
root.minsize(400, 400)
root.mainloop()
A
A
A
reply other threads:[~2018-08-22 6:52 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=25628761534920729@myt4-174696c9aa9d.qloud-c.yandex.net \
--to=ifvwm@yandex.com \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).