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
e53fcfd7
Kaydet (Commit)
e53fcfd7
authored
Kas 07, 2007
tarafından
Nick Coghlan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix issue #1705170 (backport from trunk)
üst
2e49f781
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
0 deletions
+24
-0
contextlib.py
Lib/contextlib.py
+4
-0
test_with.py
Lib/test/test_with.py
+17
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/contextlib.py
Dosyayı görüntüle @
e53fcfd7
...
@@ -25,6 +25,10 @@ class GeneratorContextManager(object):
...
@@ -25,6 +25,10 @@ class GeneratorContextManager(object):
else
:
else
:
raise
RuntimeError
(
"generator didn't stop"
)
raise
RuntimeError
(
"generator didn't stop"
)
else
:
else
:
if
value
is
None
:
# Need to force instantiation so we can reliably
# tell if we get the same exception back
value
=
type
()
try
:
try
:
self
.
gen
.
throw
(
type
,
value
,
traceback
)
self
.
gen
.
throw
(
type
,
value
,
traceback
)
raise
RuntimeError
(
"generator didn't stop after throw()"
)
raise
RuntimeError
(
"generator didn't stop after throw()"
)
...
...
Lib/test/test_with.py
Dosyayı görüntüle @
e53fcfd7
...
@@ -440,6 +440,7 @@ class ExceptionalTestCase(unittest.TestCase, ContextmanagerAssertionMixin):
...
@@ -440,6 +440,7 @@ class ExceptionalTestCase(unittest.TestCase, ContextmanagerAssertionMixin):
self
.
assertAfterWithGeneratorInvariantsNoError
(
self
.
bar
)
self
.
assertAfterWithGeneratorInvariantsNoError
(
self
.
bar
)
def
testRaisedStopIteration1
(
self
):
def
testRaisedStopIteration1
(
self
):
# From bug 1462485
@contextmanager
@contextmanager
def
cm
():
def
cm
():
yield
yield
...
@@ -451,6 +452,7 @@ class ExceptionalTestCase(unittest.TestCase, ContextmanagerAssertionMixin):
...
@@ -451,6 +452,7 @@ class ExceptionalTestCase(unittest.TestCase, ContextmanagerAssertionMixin):
self
.
assertRaises
(
StopIteration
,
shouldThrow
)
self
.
assertRaises
(
StopIteration
,
shouldThrow
)
def
testRaisedStopIteration2
(
self
):
def
testRaisedStopIteration2
(
self
):
# From bug 1462485
class
cm
(
object
):
class
cm
(
object
):
def
__enter__
(
self
):
def
__enter__
(
self
):
pass
pass
...
@@ -463,7 +465,21 @@ class ExceptionalTestCase(unittest.TestCase, ContextmanagerAssertionMixin):
...
@@ -463,7 +465,21 @@ class ExceptionalTestCase(unittest.TestCase, ContextmanagerAssertionMixin):
self
.
assertRaises
(
StopIteration
,
shouldThrow
)
self
.
assertRaises
(
StopIteration
,
shouldThrow
)
def
testRaisedStopIteration3
(
self
):
# Another variant where the exception hasn't been instantiated
# From bug 1705170
@contextmanager
def
cm
():
yield
def
shouldThrow
():
with
cm
():
raise
iter
([])
.
next
()
self
.
assertRaises
(
StopIteration
,
shouldThrow
)
def
testRaisedGeneratorExit1
(
self
):
def
testRaisedGeneratorExit1
(
self
):
# From bug 1462485
@contextmanager
@contextmanager
def
cm
():
def
cm
():
yield
yield
...
@@ -475,6 +491,7 @@ class ExceptionalTestCase(unittest.TestCase, ContextmanagerAssertionMixin):
...
@@ -475,6 +491,7 @@ class ExceptionalTestCase(unittest.TestCase, ContextmanagerAssertionMixin):
self
.
assertRaises
(
GeneratorExit
,
shouldThrow
)
self
.
assertRaises
(
GeneratorExit
,
shouldThrow
)
def
testRaisedGeneratorExit2
(
self
):
def
testRaisedGeneratorExit2
(
self
):
# From bug 1462485
class
cm
(
object
):
class
cm
(
object
):
def
__enter__
(
self
):
def
__enter__
(
self
):
pass
pass
...
...
Misc/NEWS
Dosyayı görüntüle @
e53fcfd7
...
@@ -32,6 +32,9 @@ Core and builtins
...
@@ -32,6 +32,9 @@ Core and builtins
Library
Library
-------
-------
- Issue #1705170: contextlib.contextmanager was still swallowing
StopIteration in some cases. This should no longer happen.
- Bug #1307: Fix smtpd so it doesn'
t
raise
an
exception
when
there
is
no
arg
.
- Bug #1307: Fix smtpd so it doesn'
t
raise
an
exception
when
there
is
no
arg
.
-
ctypes
will
now
work
correctly
on
32
-
bit
systems
when
Python
is
-
ctypes
will
now
work
correctly
on
32
-
bit
systems
when
Python
is
...
...
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