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
0c2dd0c0
Kaydet (Commit)
0c2dd0c0
authored
Agu 23, 2013
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Close #17702: On error, os.environb now removes suppress the except context
when raising a new KeyError with the original key.
üst
f1e02730
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
2 deletions
+8
-2
os.py
Lib/os.py
+2
-2
test_os.py
Lib/test/test_os.py
+3
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/os.py
Dosyayı görüntüle @
0c2dd0c0
...
...
@@ -673,7 +673,7 @@ class _Environ(MutableMapping):
value
=
self
.
_data
[
self
.
encodekey
(
key
)]
except
KeyError
:
# raise KeyError with the original key value
raise
KeyError
(
key
)
raise
KeyError
(
key
)
from
None
return
self
.
decodevalue
(
value
)
def
__setitem__
(
self
,
key
,
value
):
...
...
@@ -689,7 +689,7 @@ class _Environ(MutableMapping):
del
self
.
_data
[
encodedkey
]
except
KeyError
:
# raise KeyError with the original key value
raise
KeyError
(
key
)
raise
KeyError
(
key
)
from
None
def
__iter__
(
self
):
for
key
in
self
.
_data
:
...
...
Lib/test/test_os.py
Dosyayı görüntüle @
0c2dd0c0
...
...
@@ -644,10 +644,13 @@ class EnvironTests(mapping_tests.BasicTestMappingProtocol):
with
self
.
assertRaises
(
KeyError
)
as
cm
:
os
.
environ
[
missing
]
self
.
assertIs
(
cm
.
exception
.
args
[
0
],
missing
)
self
.
assertTrue
(
cm
.
exception
.
__suppress_context__
)
with
self
.
assertRaises
(
KeyError
)
as
cm
:
del
os
.
environ
[
missing
]
self
.
assertIs
(
cm
.
exception
.
args
[
0
],
missing
)
self
.
assertTrue
(
cm
.
exception
.
__suppress_context__
)
class
WalkTests
(
unittest
.
TestCase
):
"""Tests for os.walk()."""
...
...
Misc/NEWS
Dosyayı görüntüle @
0c2dd0c0
...
...
@@ -66,6 +66,9 @@ Core and Builtins
Library
-------
- Issue #17702: On error, os.environb now removes suppress the except context
when raising a new KeyError with the original key.
- Issue #18755: Fixed the loader used in imp to allow get_data() to be called
multiple times.
...
...
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