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
38430e2d
Kaydet (Commit)
38430e2d
authored
Agu 19, 2010
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix os.get_exec_path() (code and tests) for python -bb
Catch BytesWarning exceptions.
üst
9802b39c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
5 deletions
+12
-5
os.py
Lib/os.py
+2
-2
test_os.py
Lib/test/test_os.py
+10
-3
No files found.
Lib/os.py
Dosyayı görüntüle @
38430e2d
...
...
@@ -387,13 +387,13 @@ def get_exec_path(env=None):
try
:
path_list
=
env
.
get
(
'PATH'
)
except
TypeError
:
except
(
TypeError
,
BytesWarning
)
:
path_list
=
None
if
supports_bytes_environ
:
try
:
path_listb
=
env
[
b
'PATH'
]
except
(
KeyError
,
TypeError
):
except
(
KeyError
,
TypeError
,
BytesWarning
):
pass
else
:
if
path_list
is
not
None
:
...
...
Lib/test/test_os.py
Dosyayı görüntüle @
38430e2d
...
...
@@ -450,8 +450,12 @@ class EnvironTests(mapping_tests.BasicTestMappingProtocol):
if
os
.
supports_bytes_environ
:
# env cannot contain 'PATH' and b'PATH' keys
self
.
assertRaises
(
ValueError
,
os
.
get_exec_path
,
{
'PATH'
:
'1'
,
b
'PATH'
:
b
'2'
})
try
:
mixed_env
=
{
'PATH'
:
'1'
,
b
'PATH'
:
b
'2'
}
except
BytesWarning
:
pass
else
:
self
.
assertRaises
(
ValueError
,
os
.
get_exec_path
,
mixed_env
)
# bytes key and/or value
self
.
assertSequenceEqual
(
os
.
get_exec_path
({
b
'PATH'
:
b
'abc'
}),
...
...
@@ -723,7 +727,10 @@ class ExecTests(unittest.TestCase):
# os.get_exec_path() reads the 'PATH' variable
with
_execvpe_mockup
()
as
calls
:
env_path
=
env
.
copy
()
env_path
[
'PATH'
]
=
program_path
if
test_type
is
bytes
:
env_path
[
b
'PATH'
]
=
program_path
else
:
env_path
[
'PATH'
]
=
program_path
self
.
assertRaises
(
OSError
,
os
.
_execvpe
,
program
,
arguments
,
env
=
env_path
)
self
.
assertEqual
(
len
(
calls
),
1
)
...
...
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