Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
5a42ca6c
Kaydet (Commit)
5a42ca6c
authored
May 20, 2008
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add notes that tkinter modules will be renamed.
üst
6634bf29
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
28 additions
and
1 deletion
+28
-1
glossary.rst
Doc/glossary.rst
+8
-0
future_builtins.rst
Doc/library/future_builtins.rst
+1
-1
scrolledtext.rst
Doc/library/scrolledtext.rst
+6
-0
tix.rst
Doc/library/tix.rst
+5
-0
tkinter.rst
Doc/library/tkinter.rst
+8
-0
No files found.
Doc/glossary.rst
Dosyayı görüntüle @
5a42ca6c
...
...
@@ -16,6 +16,14 @@ Glossary
The typical Python prompt of the interactive shell when entering code for
an indented code block.
2to3
A tool that tries to convert Python 2.x code to Python 3.x code by
handling most of the incompatibilites that can be detected by parsing the
source and traversing the parse tree.
2to3 is available in the standard library as :mod:`lib2to3`; a standalone
entry point is provided as :file:`Tools/scripts/2to3`.
argument
A value passed to a function or method, assigned to a name local to
the body. A function or method may have both positional arguments and
...
...
Doc/library/future_builtins.rst
Dosyayı görüntüle @
5a42ca6c
...
...
@@ -15,7 +15,7 @@ them from this module, like this::
... code using Python 3-style map and filter ...
The :
progra
m:`2to3` tool that ports Python 2 code to Python 3 will recognize
The :
ter
m:`2to3` tool that ports Python 2 code to Python 3 will recognize
this usage and leave the new builtins alone.
.. note::
...
...
Doc/library/scrolledtext.rst
Dosyayı görüntüle @
5a42ca6c
...
...
@@ -13,6 +13,12 @@ the "right thing." Using the :class:`ScrolledText` class is a lot easier than
setting up a text widget and scroll bar directly. The constructor is the same
as that of the :class:`Tkinter.Text` class.
.. note::
:mod:`ScrolledText` has been renamed to :mod:`tkinter.scrolledtext` in Python
3.0. The :term:`2to3` tool will automatically adapt imports when converting
your sources to 3.0.
The text widget and scrollbar are packed together in a :class:`Frame`, and the
methods of the :class:`Grid` and :class:`Pack` geometry managers are acquired
from the :class:`Frame` object. This allows the :class:`ScrolledText` widget to
...
...
Doc/library/tix.rst
Dosyayı görüntüle @
5a42ca6c
...
...
@@ -22,6 +22,11 @@ applications, creating more useful and more intuitive user interfaces. You can
design
your
application
by
choosing
the
most
appropriate
widgets
to
match
the
special
needs
of
your
application
and
users
.
..
note
::
:
mod
:`
Tix
`
has
been
renamed
to
:
mod
:`
tkinter
.
tix
`
in
Python
3.0
.
The
:
term
:`
2
to3
`
tool
will
automatically
adapt
imports
when
converting
your
sources
to
3.0
.
..
seealso
::
...
...
Doc/library/tkinter.rst
Dosyayı görüntüle @
5a42ca6c
...
...
@@ -11,6 +11,11 @@ the Tk GUI toolkit. Both Tk and :mod:`Tkinter` are available on most Unix
platforms, as well as on Windows and Macintosh systems. (Tk itself is not part
of Python; it is maintained at ActiveState.)
.. note::
:mod:`Tkinter` has been renamed to :mod:`tkinter` in Python 3.0. The
:term:`2to3` tool will automatically adapt imports when converting your
sources to 3.0.
.. seealso::
...
...
@@ -107,6 +112,9 @@ Other modules that provide Tk support include:
:mod:`turtle`
Turtle graphics in a Tk window.
These have been renamed as well in Python 3.0; they were all made submodules of
the new ``tkinter`` package.
Tkinter Life Preserver
----------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment