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
08dabf0a
Kaydet (Commit)
08dabf0a
authored
Ock 21, 2001
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #103344: Sort dicts from extcall for easier comparison with Jython.
üst
9e9bcda5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
5 deletions
+13
-5
test_extcall
Lib/test/output/test_extcall
+0
-0
test_extcall.py
Lib/test/test_extcall.py
+13
-5
No files found.
Lib/test/output/test_extcall
Dosyayı görüntüle @
08dabf0a
This diff is collapsed.
Click to expand it.
Lib/test/test_extcall.py
Dosyayı görüntüle @
08dabf0a
...
...
@@ -2,11 +2,19 @@ from test_support import verify, verbose, TestFailed
from
UserList
import
UserList
import
string
def
sortdict
(
d
):
keys
=
d
.
keys
()
keys
.
sort
()
lst
=
[]
for
k
in
keys
:
lst
.
append
(
"
%
r:
%
r"
%
(
k
,
d
[
k
]))
return
"{
%
s}"
%
", "
.
join
(
lst
)
def
f
(
*
a
,
**
k
):
print
a
,
k
print
a
,
sortdict
(
k
)
def
g
(
x
,
*
y
,
**
z
):
print
x
,
y
,
z
print
x
,
y
,
sortdict
(
z
)
def
h
(
j
=
1
,
a
=
2
,
h
=
3
):
print
j
,
a
,
h
...
...
@@ -81,8 +89,8 @@ d = {'a': 1, 'b': 2, 'c': 3}
d2
=
d
.
copy
()
verify
(
d
==
d2
)
g
(
1
,
d
=
4
,
**
d
)
print
d
print
d2
print
sortdict
(
d
)
print
sortdict
(
d2
)
verify
(
d
==
d2
,
"function call modified dictionary"
)
# what about willful misconduct?
...
...
@@ -199,6 +207,6 @@ for name in ['za', 'zade', 'zabk', 'zabdv', 'zabdevk']:
for
kwargs
in
[
''
,
'a'
,
'd'
,
'ad'
,
'abde'
]:
kwdict
=
{}
for
k
in
kwargs
:
kwdict
[
k
]
=
k
+
k
print
func
.
func_name
,
args
,
kwdict
,
'->'
,
print
func
.
func_name
,
args
,
sortdict
(
kwdict
)
,
'->'
,
try
:
apply
(
func
,
args
,
kwdict
)
except
TypeError
,
err
:
print
err
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