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
40c54d5e
Kaydet (Commit)
40c54d5e
authored
Eyl 30, 2017
tarafından
Terry Jan Reedy
Kaydeden (comit)
GitHub
Eyl 30, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
[3.6] bpo-31649: Make IDLE's _htest, _utest parameters keyword-only. (GH-3839) (#3841)
(cherry picked from commit
bfebfd81
)
üst
d9c21a45
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
6 deletions
+7
-6
browser.py
Lib/idlelib/browser.py
+1
-1
config_key.py
Lib/idlelib/config_key.py
+1
-1
configdialog.py
Lib/idlelib/configdialog.py
+1
-1
help_about.py
Lib/idlelib/help_about.py
+1
-1
pathbrowser.py
Lib/idlelib/pathbrowser.py
+1
-1
textview.py
Lib/idlelib/textview.py
+1
-1
2017-09-30-13-59-18.bpo-31649.LxN4Vb.rst
...NEWS.d/next/IDLE/2017-09-30-13-59-18.bpo-31649.LxN4Vb.rst
+1
-0
No files found.
Lib/idlelib/browser.py
Dosyayı görüntüle @
40c54d5e
...
...
@@ -61,7 +61,7 @@ class ModuleBrowser:
# This class is the base class for pathbrowser.PathBrowser.
# Init and close are inherited, other methods are overriden.
def
__init__
(
self
,
flist
,
name
,
path
,
_htest
=
False
,
_utest
=
False
):
def
__init__
(
self
,
flist
,
name
,
path
,
*
,
_htest
=
False
,
_utest
=
False
):
# XXX This API should change, if the file doesn't end in ".py"
# XXX the code here is bogus!
"""Create a window for browsing a module's structure.
...
...
Lib/idlelib/config_key.py
Dosyayı görüntüle @
40c54d5e
...
...
@@ -14,7 +14,7 @@ class GetKeysDialog(Toplevel):
keyerror_title
=
'Key Sequence Error'
def
__init__
(
self
,
parent
,
title
,
action
,
currentKeySequences
,
_htest
=
False
,
_utest
=
False
):
*
,
_htest
=
False
,
_utest
=
False
):
"""
action - string, the name of the virtual event these keys will be
mapped to
...
...
Lib/idlelib/configdialog.py
Dosyayı görüntüle @
40c54d5e
...
...
@@ -41,7 +41,7 @@ class ConfigDialog(Toplevel):
"""Config dialog for IDLE.
"""
def
__init__
(
self
,
parent
,
title
=
''
,
_htest
=
False
,
_utest
=
False
):
def
__init__
(
self
,
parent
,
title
=
''
,
*
,
_htest
=
False
,
_utest
=
False
):
"""Show the tabbed dialog for user configuration.
Args:
...
...
Lib/idlelib/help_about.py
Dosyayı görüntüle @
40c54d5e
...
...
@@ -23,7 +23,7 @@ class AboutDialog(Toplevel):
"""Modal about dialog for idle
"""
def
__init__
(
self
,
parent
,
title
=
None
,
_htest
=
False
,
_utest
=
False
):
def
__init__
(
self
,
parent
,
title
=
None
,
*
,
_htest
=
False
,
_utest
=
False
):
"""Create popup, do not return until tk widget destroyed.
parent - parent of this dialog
...
...
Lib/idlelib/pathbrowser.py
Dosyayı görüntüle @
40c54d5e
...
...
@@ -9,7 +9,7 @@ from idlelib.tree import TreeItem
class
PathBrowser
(
ModuleBrowser
):
def
__init__
(
self
,
flist
,
_htest
=
False
,
_utest
=
False
):
def
__init__
(
self
,
flist
,
*
,
_htest
=
False
,
_utest
=
False
):
"""
_htest - bool, change box location when running htest
"""
...
...
Lib/idlelib/textview.py
Dosyayı görüntüle @
40c54d5e
...
...
@@ -57,7 +57,7 @@ class ViewWindow(Toplevel):
"A simple text viewer dialog for IDLE."
def
__init__
(
self
,
parent
,
title
,
text
,
modal
=
True
,
_htest
=
False
,
_utest
=
False
):
*
,
_htest
=
False
,
_utest
=
False
):
"""Show the given text in a scrollable window with a 'close' button.
If modal is left True, users cannot interact with other windows
...
...
Misc/NEWS.d/next/IDLE/2017-09-30-13-59-18.bpo-31649.LxN4Vb.rst
0 → 100644
Dosyayı görüntüle @
40c54d5e
IDLE - Make _htest, _utest parameters keyword only.
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