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
f60b7df9
Kaydet (Commit)
f60b7df9
authored
Ara 22, 2013
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #12226: HTTPS is now used by default when connecting to PyPI.
üst
ee7f3fc5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
7 deletions
+9
-7
config.py
Lib/distutils/config.py
+1
-1
test_config.py
Lib/distutils/tests/test_config.py
+2
-2
test_upload.py
Lib/distutils/tests/test_upload.py
+4
-4
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/distutils/config.py
Dosyayı görüntüle @
f60b7df9
...
...
@@ -21,7 +21,7 @@ password:%s
class
PyPIRCCommand
(
Command
):
"""Base command that knows how to handle the .pypirc file
"""
DEFAULT_REPOSITORY
=
'http://pypi.python.org/pypi'
DEFAULT_REPOSITORY
=
'http
s
://pypi.python.org/pypi'
DEFAULT_REALM
=
'pypi'
repository
=
None
realm
=
None
...
...
Lib/distutils/tests/test_config.py
Dosyayı görüntüle @
f60b7df9
...
...
@@ -87,7 +87,7 @@ class PyPIRCCommandTestCase(support.TempdirManager,
config
=
list
(
sorted
(
config
.
items
()))
waited
=
[(
'password'
,
'secret'
),
(
'realm'
,
'pypi'
),
(
'repository'
,
'http://pypi.python.org/pypi'
),
(
'repository'
,
'http
s
://pypi.python.org/pypi'
),
(
'server'
,
'server1'
),
(
'username'
,
'me'
)]
self
.
assertEqual
(
config
,
waited
)
...
...
@@ -96,7 +96,7 @@ class PyPIRCCommandTestCase(support.TempdirManager,
config
=
cmd
.
_read_pypirc
()
config
=
list
(
sorted
(
config
.
items
()))
waited
=
[(
'password'
,
'secret'
),
(
'realm'
,
'pypi'
),
(
'repository'
,
'http://pypi.python.org/pypi'
),
(
'repository'
,
'http
s
://pypi.python.org/pypi'
),
(
'server'
,
'server-login'
),
(
'username'
,
'tarek'
)]
self
.
assertEqual
(
config
,
waited
)
...
...
Lib/distutils/tests/test_upload.py
Dosyayı görüntüle @
f60b7df9
...
...
@@ -72,11 +72,11 @@ class uploadTestCase(PyPIRCCommandTestCase):
def
setUp
(
self
):
super
(
uploadTestCase
,
self
)
.
setUp
()
self
.
old_class
=
httpclient
.
HTTPConnection
self
.
conn
=
httpclient
.
HTTPConnection
=
FakeConnection
()
self
.
old_class
=
httpclient
.
HTTP
S
Connection
self
.
conn
=
httpclient
.
HTTP
S
Connection
=
FakeConnection
()
def
tearDown
(
self
):
httpclient
.
HTTPConnection
=
self
.
old_class
httpclient
.
HTTP
S
Connection
=
self
.
old_class
super
(
uploadTestCase
,
self
)
.
tearDown
()
def
test_finalize_options
(
self
):
...
...
@@ -88,7 +88,7 @@ class uploadTestCase(PyPIRCCommandTestCase):
cmd
.
finalize_options
()
for
attr
,
waited
in
((
'username'
,
'me'
),
(
'password'
,
'secret'
),
(
'realm'
,
'pypi'
),
(
'repository'
,
'http://pypi.python.org/pypi'
)):
(
'repository'
,
'http
s
://pypi.python.org/pypi'
)):
self
.
assertEqual
(
getattr
(
cmd
,
attr
),
waited
)
def
test_saved_password
(
self
):
...
...
Misc/NEWS
Dosyayı görüntüle @
f60b7df9
...
...
@@ -10,6 +10,8 @@ What's New in Python 3.2.6?
Library
-------
- Issue #12226: HTTPS is now used by default when connecting to PyPI.
- Issue #19435: Fix directory traversal attack on CGIHttpRequestHandler.
- Issue #14984: On POSIX systems, when netrc is called without a filename
...
...
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