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
c02cc270
Kaydet (Commit)
c02cc270
authored
Tem 27, 2010
tarafından
Alexander Belopolsky
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #9384: python -m tkinter will now display a simple demo applet.
üst
5a63183a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
tkinter.rst
Doc/library/tkinter.rst
+3
-1
__main__.py
Lib/tkinter/__main__.py
+7
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Doc/library/tkinter.rst
Dosyayı görüntüle @
c02cc270
...
...
@@ -9,7 +9,9 @@
The
:
mod
:`
tkinter
`
package
(
"Tk interface"
)
is
the
standard
Python
interface
to
the
Tk
GUI
toolkit
.
Both
Tk
and
:
mod
:`
tkinter
`
are
available
on
most
Unix
platforms
,
as
well
as
on
Windows
systems
.
(
Tk
itself
is
not
part
of
Python
;
it
is
maintained
at
ActiveState
.)
is
maintained
at
ActiveState
.)
You
can
check
that
:
mod
:`
tkinter
`
is
properly
installed
on
your
system
by
running
``
python
-
m
tkinter
``
from
the
command
line
;
this
should
open
a
window
demonstrating
a
simple
Tk
interface
.
..
seealso
::
...
...
Lib/tkinter/__main__.py
0 → 100644
Dosyayı görüntüle @
c02cc270
"""Main entry point"""
import
sys
if
sys
.
argv
[
0
]
.
endswith
(
"__main__.py"
):
sys
.
argv
[
0
]
=
"python -m tkinter"
from
.
import
_test
as
main
main
()
Misc/NEWS
Dosyayı görüntüle @
c02cc270
...
...
@@ -473,6 +473,8 @@ C-API
Library
-------
- Issue #9384: python -m tkinter will now display a simple demo applet.
- The default size of the re module's compiled regular expression cache has
been increased from 100 to 500 and the cache replacement policy has changed
from simply clearing the entire cache on overflow to randomly forgetting 20%
...
...
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