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
0c5b5d45
Kaydet (Commit)
0c5b5d45
authored
Ock 27, 2014
tarafından
Terry Jan Reedy
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge with 3.3
üst
76964877
1b759bc4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
test_calltips.py
Lib/idlelib/idle_test/test_calltips.py
+10
-0
No files found.
Lib/idlelib/idle_test/test_calltips.py
Dosyayı görüntüle @
0c5b5d45
...
...
@@ -123,6 +123,16 @@ bytes() -> empty bytes object''')
(
tc
.
__call__
,
'(ci)'
),
(
tc
,
'(ci)'
),
(
TC
.
cm
,
"(a)"
),):
self
.
assertEqual
(
signature
(
meth
),
mtip
+
"
\n
doc"
)
def
test_starred_parameter
(
self
):
# test that starred first parameter is *not* removed from argspec
class
C
:
def
m1
(
*
args
):
pass
def
m2
(
**
kwds
):
pass
c
=
C
()
for
meth
,
mtip
in
((
C
.
m1
,
'(*args)'
),
(
c
.
m1
,
"(*args)"
),
(
C
.
m2
,
"(**kwds)"
),
(
c
.
m2
,
"(**kwds)"
),):
self
.
assertEqual
(
signature
(
meth
),
mtip
)
def
test_non_ascii_name
(
self
):
# test that re works to delete a first parameter name that
# includes non-ascii chars, such as various forms of A.
...
...
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