Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove reference to C methods
  • Loading branch information
csabella committed Dec 22, 2017
commit 90684066f318e51982ff24fee846954d0c730362
12 changes: 6 additions & 6 deletions Doc/library/tkinter.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Or, more often::
However, the following keyword arguments are currently recognized:

*screenName*
When given (as a string), sets the :envvar:`DISPLAY` environmental
When given (as a string), sets the :envvar:`DISPLAY` environment
variable. (X11 only)
Comment thread
JulienPalard marked this conversation as resolved.
*baseName*
Name of the profile file. By default, *baseName* is derived from the
Expand Down Expand Up @@ -105,15 +105,15 @@ Or, more often::
:file:`.{className}.tcl` and :file:`.{baseName}.tcl`, into the Tcl
interpreter and calls :func:`exec` on the contents of
:file:`.{className}.py` and :file:`.{baseName}.py`. The path for the
profile files is the :envvar:`HOME` environmental variable or, if that
profile files is the :envvar:`HOME` environment variable or, if that
isn't defined, then :attr:`os.curdir`.

.. attribute:: tk

The ``_tkinter.tkapp`` object created by instantiating :class:`Tk`. This
provides access to the C methods and attributes, including the Tcl
interpreter. Each widget that is attached the same instance of
:class:`Tk` has the same value for its :attr:`tk` attribute.
The Tk application object created by instantiating :class:`Tk`. This
provides access to the Tcl interpreter. Each widget that is attached
the same instance of :class:`Tk` has the same value for its :attr:`tk`
attribute.

.. attribute:: master

Expand Down