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
43354375
Kaydet (Commit)
43354375
authored
Haz 20, 2016
tarafından
Berker Peksag
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #20120: Merge from 3.5
üst
1d245fab
c529af3f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
test_config.py
Lib/distutils/tests/test_config.py
+19
-0
No files found.
Lib/distutils/tests/test_config.py
Dosyayı görüntüle @
43354375
...
...
@@ -16,6 +16,7 @@ PYPIRC = """\
index-servers =
server1
server2
server3
[server1]
username:me
...
...
@@ -26,6 +27,10 @@ username:meagain
password: secret
realm:acme
repository:http://another.pypi/
[server3]
username:cbiggles
password:yh^
%#
rest-of-my-password
"""
PYPIRC_OLD
=
"""
\
...
...
@@ -111,6 +116,20 @@ class PyPIRCCommandTestCase(support.TempdirManager,
finally
:
f
.
close
()
def
test_config_interpolation
(
self
):
# using the % character in .pypirc should not raise an error (#20120)
self
.
write_file
(
self
.
rc
,
PYPIRC
)
cmd
=
self
.
_cmd
(
self
.
dist
)
cmd
.
repository
=
'server3'
config
=
cmd
.
_read_pypirc
()
config
=
list
(
sorted
(
config
.
items
()))
waited
=
[(
'password'
,
'yh^
%#
rest-of-my-password'
),
(
'realm'
,
'pypi'
),
(
'repository'
,
'https://pypi.python.org/pypi'
),
(
'server'
,
'server3'
),
(
'username'
,
'cbiggles'
)]
self
.
assertEqual
(
config
,
waited
)
def
test_suite
():
return
unittest
.
makeSuite
(
PyPIRCCommandTestCase
)
...
...
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