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
4a21268a
Kaydet (Commit)
4a21268a
authored
Eyl 20, 2007
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #1181: add os.environ.clear() method.
üst
e2176020
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
os.rst
Doc/library/os.rst
+6
-2
os.py
Lib/os.py
+8
-0
No files found.
Doc/library/os.rst
Dosyayı görüntüle @
4a21268a
...
...
@@ -115,9 +115,13 @@ process and user.
passed to the appropriate process-creation functions to cause child processes
to use a modified environment.
If the platform supports the :func:`unsetenv` function, you can
delete items in
If the platform supports the :func:`unsetenv` function, you can delete items in
this mapping to unset environment variables. :func:`unsetenv` will be called
automatically when an item is deleted from ``os.environ``.
automatically when an item is deleted from ``os.environ``, and when
:meth:`os.environ.clear` is called.
.. versionchanged:: 2.6
Also unset environment variables when calling :meth:`os.environ.clear`.
.. function:: chdir(path)
...
...
Lib/os.py
Dosyayı görüntüle @
4a21268a
...
...
@@ -446,6 +446,10 @@ else:
def
__delitem__
(
self
,
key
):
unsetenv
(
key
)
del
self
.
data
[
key
.
upper
()]
def
clear
(
self
):
for
key
in
self
.
data
.
keys
():
unsetenv
(
key
)
del
self
.
data
[
key
]
def
has_key
(
self
,
key
):
return
key
.
upper
()
in
self
.
data
def
__contains__
(
self
,
key
):
...
...
@@ -503,6 +507,10 @@ else:
def
__delitem__
(
self
,
key
):
unsetenv
(
key
)
del
self
.
data
[
key
]
def
clear
(
self
):
for
key
in
self
.
data
.
keys
():
unsetenv
(
key
)
del
self
.
data
[
key
]
def
copy
(
self
):
return
dict
(
self
)
...
...
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