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
87edc5e5
Kaydet (Commit)
87edc5e5
authored
Haz 04, 2017
tarafından
Zachary Ware
Kaydeden (comit)
GitHub
Haz 04, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Skip UNC tests on AppVeyor in case of ENOENT (GH-1950)
üst
6a1b89dd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
test_import.py
Lib/test/test_import.py
+1
-1
test_tcl.py
Lib/test/test_tcl.py
+1
-1
No files found.
Lib/test/test_import.py
Dosyayı görüntüle @
87edc5e5
...
...
@@ -548,7 +548,7 @@ class PathsTests(unittest.TestCase):
try
:
os
.
listdir
(
unc
)
except
OSError
as
e
:
if
e
.
errno
in
(
errno
.
EPERM
,
errno
.
EACCES
):
if
e
.
errno
in
(
errno
.
EPERM
,
errno
.
EACCES
,
errno
.
ENOENT
):
# See issue #15338
self
.
skipTest
(
"cannot access administrative share
%
r"
%
(
unc
,))
raise
...
...
Lib/test/test_tcl.py
Dosyayı görüntüle @
87edc5e5
...
...
@@ -256,7 +256,7 @@ class TclTest(unittest.TestCase):
try
:
p
=
Popen
(
cmd
,
stdout
=
PIPE
,
stderr
=
PIPE
)
except
WindowsError
as
e
:
if
e
.
winerror
==
5
:
if
e
.
winerror
==
5
or
e
.
winerror
==
2
:
self
.
skipTest
(
'Not permitted to start the child process'
)
else
:
raise
...
...
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