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
248e3a8b
Kaydet (Commit)
248e3a8b
authored
May 20, 2008
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Tkinter renaming reversal: Delete all stubs from lib-tk.
üst
7bb1653c
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
0 additions
and
120 deletions
+0
-120
FileDialog.py
Lib/lib-tk/FileDialog.py
+0
-8
FixTk.py
Lib/lib-tk/FixTk.py
+0
-8
ScrolledText.py
Lib/lib-tk/ScrolledText.py
+0
-8
SimpleDialog.py
Lib/lib-tk/SimpleDialog.py
+0
-8
Tix.py
Lib/lib-tk/Tix.py
+0
-8
Tkconstants.py
Lib/lib-tk/Tkconstants.py
+0
-8
Tkdnd.py
Lib/lib-tk/Tkdnd.py
+0
-8
Tkinter.py
Lib/lib-tk/Tkinter.py
+0
-8
tkColorChooser.py
Lib/lib-tk/tkColorChooser.py
+0
-8
tkCommonDialog.py
Lib/lib-tk/tkCommonDialog.py
+0
-8
tkFileDialog.py
Lib/lib-tk/tkFileDialog.py
+0
-8
tkFont.py
Lib/lib-tk/tkFont.py
+0
-8
tkMessageBox.py
Lib/lib-tk/tkMessageBox.py
+0
-8
tkSimpleDialog.py
Lib/lib-tk/tkSimpleDialog.py
+0
-8
turtle.py
Lib/lib-tk/turtle.py
+0
-8
No files found.
Lib/lib-tk/FileDialog.py
deleted
100644 → 0
Dosyayı görüntüle @
7bb1653c
import
sys
from
warnings
import
warnpy3k
warnpy3k
(
"the FileDialog module has been renamed "
"to 'tkinter.filedialog' in Python 3.0"
,
stacklevel
=
2
)
import
tkinter.filedialog
sys
.
modules
[
__name__
]
=
tkinter
.
filedialog
Lib/lib-tk/FixTk.py
deleted
100644 → 0
Dosyayı görüntüle @
7bb1653c
import
sys
from
warnings
import
warnpy3k
warnpy3k
(
"the FixTk module has been renamed "
"to 'tkinter._fix' in Python 3.0"
,
stacklevel
=
2
)
import
tkinter._fix
sys
.
modules
[
__name__
]
=
tkinter
.
_fix
Lib/lib-tk/ScrolledText.py
deleted
100644 → 0
Dosyayı görüntüle @
7bb1653c
import
sys
from
warnings
import
warnpy3k
warnpy3k
(
"the ScrolledText module has been renamed "
"to 'tkinter.scrolledtext' in Python 3.0"
,
stacklevel
=
2
)
import
tkinter.scrolledtext
sys
.
modules
[
__name__
]
=
tkinter
.
scrolledtext
Lib/lib-tk/SimpleDialog.py
deleted
100644 → 0
Dosyayı görüntüle @
7bb1653c
import
sys
from
warnings
import
warnpy3k
warnpy3k
(
"the SimpleDialog module has been renamed "
"to 'tkinter.simpledialog' in Python 3.0"
,
stacklevel
=
2
)
import
tkinter.simpledialog
sys
.
modules
[
__name__
]
=
tkinter
.
simpledialog
Lib/lib-tk/Tix.py
deleted
100644 → 0
Dosyayı görüntüle @
7bb1653c
import
sys
from
warnings
import
warnpy3k
warnpy3k
(
"the Tix module has been renamed "
"to 'tkinter.tix' in Python 3.0"
,
stacklevel
=
2
)
import
tkinter.tix
sys
.
modules
[
__name__
]
=
tkinter
.
tix
Lib/lib-tk/Tkconstants.py
deleted
100644 → 0
Dosyayı görüntüle @
7bb1653c
import
sys
from
warnings
import
warnpy3k
warnpy3k
(
"the Tkconstants module has been renamed "
"to 'tkinter.constants' in Python 3.0"
,
stacklevel
=
2
)
import
tkinter.constants
sys
.
modules
[
__name__
]
=
tkinter
.
constants
Lib/lib-tk/Tkdnd.py
deleted
100644 → 0
Dosyayı görüntüle @
7bb1653c
import
sys
from
warnings
import
warnpy3k
warnpy3k
(
"the Tkdnd module has been renamed "
"to 'tkinter.dnd' in Python 3.0"
,
stacklevel
=
2
)
import
tkinter.dnd
sys
.
modules
[
__name__
]
=
tkinter
.
dnd
Lib/lib-tk/Tkinter.py
deleted
100644 → 0
Dosyayı görüntüle @
7bb1653c
import
sys
from
warnings
import
warnpy3k
warnpy3k
(
"the Tkinter module has been renamed "
"to 'tkinter' in Python 3.0"
,
stacklevel
=
2
)
import
tkinter
sys
.
modules
[
__name__
]
=
tkinter
Lib/lib-tk/tkColorChooser.py
deleted
100644 → 0
Dosyayı görüntüle @
7bb1653c
import
sys
from
warnings
import
warnpy3k
warnpy3k
(
"the tkColorChooser module has been renamed "
"to 'tkinter.colorchooser' in Python 3.0"
,
stacklevel
=
2
)
import
tkinter.colorchooser
sys
.
modules
[
__name__
]
=
tkinter
.
colorchooser
Lib/lib-tk/tkCommonDialog.py
deleted
100644 → 0
Dosyayı görüntüle @
7bb1653c
import
sys
from
warnings
import
warnpy3k
warnpy3k
(
"the tkCommonDialog module has been renamed "
"to 'tkinter.commondialog' in Python 3.0"
,
stacklevel
=
2
)
import
tkinter.commondialog
sys
.
modules
[
__name__
]
=
tkinter
.
commondialog
Lib/lib-tk/tkFileDialog.py
deleted
100644 → 0
Dosyayı görüntüle @
7bb1653c
import
sys
from
warnings
import
warnpy3k
warnpy3k
(
"the tkFileDialog module has been renamed "
"to 'tkinter.filedialog' in Python 3.0"
,
stacklevel
=
2
)
import
tkinter.filedialog
sys
.
modules
[
__name__
]
=
tkinter
.
filedialog
Lib/lib-tk/tkFont.py
deleted
100644 → 0
Dosyayı görüntüle @
7bb1653c
import
sys
from
warnings
import
warnpy3k
warnpy3k
(
"the tkFont module has been renamed "
"to 'tkinter.font' in Python 3.0"
,
stacklevel
=
2
)
import
tkinter.font
sys
.
modules
[
__name__
]
=
tkinter
.
font
Lib/lib-tk/tkMessageBox.py
deleted
100644 → 0
Dosyayı görüntüle @
7bb1653c
import
sys
from
warnings
import
warnpy3k
warnpy3k
(
"the tkMessageBox module has been renamed "
"to 'tkinter.messagebox' in Python 3.0"
,
stacklevel
=
2
)
import
tkinter.messagebox
sys
.
modules
[
__name__
]
=
tkinter
.
messagebox
Lib/lib-tk/tkSimpleDialog.py
deleted
100644 → 0
Dosyayı görüntüle @
7bb1653c
import
sys
from
warnings
import
warnpy3k
warnpy3k
(
"the tkSimpleDialog module has been renamed "
"to 'tkinter.simpledialog' in Python 3.0"
,
stacklevel
=
2
)
import
tkinter.simpledialog
sys
.
modules
[
__name__
]
=
tkinter
.
simpledialog
Lib/lib-tk/turtle.py
deleted
100644 → 0
Dosyayı görüntüle @
7bb1653c
import
sys
from
warnings
import
warnpy3k
warnpy3k
(
"the turtle module has been renamed "
"to 'tkinter.turtle' in Python 3.0"
,
stacklevel
=
2
)
import
tkinter.turtle
sys
.
modules
[
__name__
]
=
tkinter
.
turtle
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