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
179a3dbc
Kaydet (Commit)
179a3dbc
authored
Eki 12, 2013
tarafından
Christian Heimes
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #19205: add debugging output for failing test on Snow Leopard
üst
cbf6e95d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
7 deletions
+12
-7
test_site.py
Lib/test/test_site.py
+12
-7
No files found.
Lib/test/test_site.py
Dosyayı görüntüle @
179a3dbc
...
...
@@ -425,19 +425,24 @@ class StartupImportTests(unittest.TestCase):
def
test_startup_imports
(
self
):
# This tests checks which modules are loaded by Python when it
# initially starts upon startup.
args
=
[
sys
.
executable
,
'-I'
,
'-c'
,
'import sys; print(set(sys.modules))'
]
stdout
=
subprocess
.
check_output
(
args
)
modules
=
eval
(
stdout
.
decode
(
'utf-8'
))
popen
=
subprocess
.
Popen
([
sys
.
executable
,
'-I'
,
'-v'
,
'-c'
,
'import sys; print(set(sys.modules))'
],
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
stdout
,
stderr
=
popen
.
communicate
()
stdout
=
stdout
.
decode
(
'utf-8'
)
stderr
=
stderr
.
decode
(
'utf-8'
)
modules
=
eval
(
stdout
)
self
.
assertIn
(
'site'
,
modules
)
# http://bugs.python.org/issue19205
re_mods
=
{
're'
,
'_sre'
,
'sre_compile'
,
'sre_constants'
,
'sre_parse'
}
self
.
assertFalse
(
modules
.
intersection
(
re_mods
))
self
.
assertFalse
(
modules
.
intersection
(
re_mods
)
,
stderr
)
# http://bugs.python.org/issue9548
self
.
assertNotIn
(
'locale'
,
modules
)
self
.
assertNotIn
(
'locale'
,
modules
,
stderr
)
# http://bugs.python.org/issue19209
self
.
assertNotIn
(
'copyreg'
,
modules
)
self
.
assertNotIn
(
'copyreg'
,
modules
,
stderr
)
if
__name__
==
"__main__"
:
...
...
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