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
35fd1424
Kaydet (Commit)
35fd1424
authored
Mar 28, 2006
tarafından
Phillip J. Eby
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix contextlib not copying function attributes
üst
d207b4f3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
contextlib.py
Lib/contextlib.py
+1
-0
test_contextlib.py
Lib/test/test_contextlib.py
+15
-0
No files found.
Lib/contextlib.py
Dosyayı görüntüle @
35fd1424
...
...
@@ -78,6 +78,7 @@ def contextmanager(func):
try
:
helper
.
__name__
=
func
.
__name__
helper
.
__doc__
=
func
.
__doc__
helper
.
__dict__
=
func
.
__dict__
except
:
pass
return
helper
...
...
Lib/test/test_contextlib.py
Dosyayı görüntüle @
35fd1424
...
...
@@ -84,6 +84,21 @@ class ContextManagerTestCase(unittest.TestCase):
raise
ZeroDivisionError
(
999
)
self
.
assertEqual
(
state
,
[
1
,
42
,
999
])
def
test_contextmanager_attribs
(
self
):
def
attribs
(
**
kw
):
def
decorate
(
func
):
for
k
,
v
in
kw
.
items
():
setattr
(
func
,
k
,
v
)
return
func
return
decorate
@contextmanager
@attribs
(
foo
=
'bar'
)
def
baz
(
spam
):
"""Whee!"""
self
.
assertEqual
(
baz
.
__name__
,
'baz'
)
self
.
assertEqual
(
baz
.
foo
,
'bar'
)
self
.
assertEqual
(
baz
.
__doc__
,
"Whee!"
)
class
NestedTestCase
(
unittest
.
TestCase
):
# XXX This needs more work
...
...
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