Re: [Tkinter-discuss] Contribution to Tkinter's Documentation

2018-01-01 Thread adil gourinda
I)Installation's problem: === I don't know on which platform you are working on it, but: -if you are working on windows, it is better to download python from their officiel website: https://www.python.org/downloads/release/python-364/ -if you are working on linux, Python is pre

Re: [Tkinter-discuss] why from _tkinter import * ? why the underscore

2018-01-01 Thread R
Bryan Oakley: > _tkinter is the internal name of the C-based wrapper around the tcl > interpreter. It has a leading underscore to highlight the fact that it's a > "private" method that is part of the tkinter package. Ah , thanks ! I've put that into the app to clarify. Happy New Year, everyone !

Re: [Tkinter-discuss] why from _tkinter import * ? why the underscore

2018-01-01 Thread R
adil gourinda: > where have you seen that example? > > From: Tkinter-discuss > on behalf of R > A valid question. It straight from the main wiki : https://wiki.python.org/moin/TkInter , the head honcho of authoritative web sources. "Checking your Tkinte

Re: [Tkinter-discuss] why from _tkinter import * ? why the underscore

2018-01-01 Thread Bryan Oakley
_tkinter is the internal name of the C-based wrapper around the tcl interpreter. It has a leading underscore to highlight the fact that it's a "private" method that is part of the tkinter package. On Sat, Dec 30, 2017 at 7:50 PM, R wrote: > > whyfrom _tkinter import * ? > > > > why the