> On 2017-08-21 01:28, jf...@ms4.hinet.net wrote:
>> Peter Otten at 2017/8/20 UTC+8 PM 5:52:24 wrote:
> [snip]
>
>>> That is just a peculiarity of TCL; a "-" is added to the option by the
>>> Python wrapper before passing it along
>>
>> This extra "-" confuses people when showing up in the Traceba
On 2017-08-21 01:28, jf...@ms4.hinet.net wrote:
Peter Otten at 2017/8/20 UTC+8 PM 5:52:24 wrote:
[snip]
That is just a peculiarity of TCL; a "-" is added to the option by the
Python wrapper before passing it along
This extra "-" confuses people when showing up in the Traceback info. Can't
f
Peter Otten at 2017/8/20 UTC+8 PM 5:52:24 wrote:
> jf...@ms4.hinet.net wrote:
>
> > I am running a tkinter tutor downloaded from web,
> > https://github.com/daleathan/widget-tour-py3. there are two files
> > involved:
> >
> >
> > #file button.py
> >
> > from tkinter import *
jf...@ms4.hinet.net wrote:
> I am running a tkinter tutor downloaded from web,
> https://github.com/daleathan/widget-tour-py3. there are two files
> involved:
>
>
> #file button.py
>
> from tkinter import *
> from tkinter.ttk import *
> import infrastructure
> ...
> class Bu
I am running a tkinter tutor downloaded from web,
https://github.com/daleathan/widget-tour-py3. there are two files involved:
#file button.py
from tkinter import *
from tkinter.ttk import *
import infrastructure
...
class ButtonsDemoWindow( infrastructure.DemoWindow ):
.