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
8a8d2850
Kaydet (Commit)
8a8d2850
authored
Tem 01, 2017
tarafından
Osvaldo Santana Neto
Kaydeden (comit)
Serhiy Storchaka
Tem 01, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-30441: Fix bug when modifying os.environ while iterating over it (#2409)
üst
85f64302
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
1 deletion
+29
-1
os.py
Lib/os.py
+3
-1
test_os.py
Lib/test/test_os.py
+24
-0
ACKS
Misc/ACKS
+1
-0
2017-06-29-14-25-14.bpo-30441.3Wh9kc.rst
...S.d/next/Library/2017-06-29-14-25-14.bpo-30441.3Wh9kc.rst
+1
-0
No files found.
Lib/os.py
Dosyayı görüntüle @
8a8d2850
...
...
@@ -697,7 +697,9 @@ class _Environ(MutableMapping):
raise
KeyError
(
key
)
from
None
def
__iter__
(
self
):
for
key
in
self
.
_data
:
# list() from dict object is an atomic operation
keys
=
list
(
self
.
_data
)
for
key
in
keys
:
yield
self
.
decodekey
(
key
)
def
__len__
(
self
):
...
...
Lib/test/test_os.py
Dosyayı görüntüle @
8a8d2850
...
...
@@ -835,6 +835,30 @@ class EnvironTests(mapping_tests.BasicTestMappingProtocol):
self
.
assertIs
(
cm
.
exception
.
args
[
0
],
missing
)
self
.
assertTrue
(
cm
.
exception
.
__suppress_context__
)
def
_test_environ_iteration
(
self
,
collection
):
iterator
=
iter
(
collection
)
new_key
=
"__new_key__"
next
(
iterator
)
# start iteration over os.environ.items
# add a new key in os.environ mapping
os
.
environ
[
new_key
]
=
"test_environ_iteration"
try
:
next
(
iterator
)
# force iteration over modified mapping
self
.
assertEqual
(
os
.
environ
[
new_key
],
"test_environ_iteration"
)
finally
:
del
os
.
environ
[
new_key
]
def
test_iter_error_when_changing_os_environ
(
self
):
self
.
_test_environ_iteration
(
os
.
environ
)
def
test_iter_error_when_changing_os_environ_items
(
self
):
self
.
_test_environ_iteration
(
os
.
environ
.
items
())
def
test_iter_error_when_changing_os_environ_values
(
self
):
self
.
_test_environ_iteration
(
os
.
environ
.
values
())
class
WalkTests
(
unittest
.
TestCase
):
"""Tests for os.walk()."""
...
...
Misc/ACKS
Dosyayı görüntüle @
8a8d2850
...
...
@@ -1088,6 +1088,7 @@ Fredrik Nehr
Tony Nelson
Trent Nelson
Andrew Nester
Osvaldo Santana Neto
Chad Netzer
Max Neunhöffer
Anthon van der Neut
...
...
Misc/NEWS.d/next/Library/2017-06-29-14-25-14.bpo-30441.3Wh9kc.rst
0 → 100644
Dosyayı görüntüle @
8a8d2850
Fix bug when modifying os.environ while iterating over it
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