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
e81b0289
Kaydet (Commit)
e81b0289
authored
Şub 02, 2010
tarafından
Tarek Ziadé
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sysconfig.get_scheme_names now returns a sorted tuple
üst
cc118178
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
sysconfig.py
Lib/sysconfig.py
+3
-1
test_sysconfig.py
Lib/test/test_sysconfig.py
+7
-1
No files found.
Lib/sysconfig.py
Dosyayı görüntüle @
e81b0289
...
...
@@ -343,7 +343,9 @@ def get_config_h_filename():
def
get_scheme_names
():
"""Returns a tuple containing the schemes names."""
return
_INSTALL_SCHEMES
.
keys
()
schemes
=
_INSTALL_SCHEMES
.
keys
()
schemes
.
sort
()
return
tuple
(
schemes
)
def
get_path_names
():
"""Returns a tuple containing the paths names."""
...
...
Lib/test/test_sysconfig.py
Dosyayı görüntüle @
e81b0289
...
...
@@ -15,7 +15,8 @@ from test.test_support import run_unittest, TESTFN
import
sysconfig
from
sysconfig
import
(
get_paths
,
get_platform
,
get_config_vars
,
get_path
,
get_path_names
,
_INSTALL_SCHEMES
,
_get_default_scheme
,
_expand_vars
)
_get_default_scheme
,
_expand_vars
,
get_scheme_names
)
class
TestSysConfig
(
unittest
.
TestCase
):
...
...
@@ -232,6 +233,11 @@ class TestSysConfig(unittest.TestCase):
config_h
=
sysconfig
.
get_config_h_filename
()
self
.
assertTrue
(
os
.
path
.
isfile
(
config_h
),
config_h
)
def
test_get_scheme_names
(
self
):
wanted
=
(
'nt'
,
'nt_user'
,
'os2'
,
'os2_home'
,
'posix_home'
,
'posix_prefix'
,
'posix_user'
)
self
.
assertEquals
(
get_scheme_names
(),
wanted
)
def
test_main
():
run_unittest
(
TestSysConfig
)
...
...
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