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
335a5128
Kaydet (Commit)
335a5128
authored
Ara 22, 2013
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix TypeError on "setup.py upload --show-response".
üst
f20ea139
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
28 additions
and
6 deletions
+28
-6
register.py
Lib/distutils/command/register.py
+1
-4
upload.py
Lib/distutils/command/upload.py
+2
-1
config.py
Lib/distutils/config.py
+7
-0
test_upload.py
Lib/distutils/tests/test_upload.py
+16
-1
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/distutils/command/register.py
Dosyayı görüntüle @
335a5128
...
...
@@ -5,7 +5,6 @@ Implements the Distutils 'register' command (register with the repository).
# created 2002/10/21, Richard Jones
import
cgi
import
os
,
string
,
getpass
import
io
import
urllib.parse
,
urllib
.
request
...
...
@@ -88,9 +87,7 @@ class register(PyPIRCCommand):
'''
url
=
self
.
repository
+
'?:action=list_classifiers'
response
=
urllib
.
request
.
urlopen
(
url
)
content_type
=
response
.
getheader
(
'content-type'
,
'text/plain'
)
encoding
=
cgi
.
parse_header
(
content_type
)[
1
]
.
get
(
'charset'
,
'ascii'
)
log
.
info
(
response
.
read
()
.
decode
(
encoding
))
log
.
info
(
self
.
_read_pypi_response
(
response
))
def
verify_metadata
(
self
):
''' Send the metadata to the package index server to be checked.
...
...
Lib/distutils/command/upload.py
Dosyayı görüntüle @
335a5128
...
...
@@ -196,5 +196,6 @@ class upload(PyPIRCCommand):
self
.
announce
(
'Upload failed (
%
s):
%
s'
%
(
status
,
reason
),
log
.
ERROR
)
if
self
.
show_response
:
msg
=
'
\n
'
.
join
((
'-'
*
75
,
result
.
read
(),
'-'
*
75
))
text
=
self
.
_read_pypi_response
(
result
)
msg
=
'
\n
'
.
join
((
'-'
*
75
,
text
,
'-'
*
75
))
self
.
announce
(
msg
,
log
.
INFO
)
Lib/distutils/config.py
Dosyayı görüntüle @
335a5128
...
...
@@ -3,6 +3,7 @@
Provides the PyPIRCCommand class, the base class for the command classes
that uses .pypirc in the distutils.command package.
"""
import
cgi
import
os
from
configparser
import
ConfigParser
...
...
@@ -101,6 +102,12 @@ class PyPIRCCommand(Command):
return
{}
def
_read_pypi_response
(
self
,
response
):
"""Read and decode a PyPI HTTP response."""
content_type
=
response
.
getheader
(
'content-type'
,
'text/plain'
)
encoding
=
cgi
.
parse_header
(
content_type
)[
1
]
.
get
(
'charset'
,
'ascii'
)
return
response
.
read
()
.
decode
(
encoding
)
def
initialize_options
(
self
):
"""Initialize options."""
self
.
repository
=
None
...
...
Lib/distutils/tests/test_upload.py
Dosyayı görüntüle @
335a5128
...
...
@@ -6,6 +6,7 @@ from test.support import run_unittest
from
distutils.command
import
upload
as
upload_mod
from
distutils.command.upload
import
upload
from
distutils.core
import
Distribution
from
distutils.log
import
INFO
from
distutils.tests.test_config
import
PYPIRC
,
PyPIRCCommandTestCase
...
...
@@ -48,6 +49,14 @@ class FakeOpen(object):
self
.
req
=
None
self
.
msg
=
'OK'
def
getheader
(
self
,
name
,
default
=
None
):
return
{
'content-type'
:
'text/plain; charset=utf-8'
,
}
.
get
(
name
.
lower
(),
default
)
def
read
(
self
):
return
b
'xyzzy'
def
getcode
(
self
):
return
200
...
...
@@ -108,10 +117,11 @@ class uploadTestCase(PyPIRCCommandTestCase):
# lets run it
pkg_dir
,
dist
=
self
.
create_dist
(
dist_files
=
dist_files
)
cmd
=
upload
(
dist
)
cmd
.
show_response
=
1
cmd
.
ensure_finalized
()
cmd
.
run
()
# what did we send ?
# what did we send ?
headers
=
dict
(
self
.
last_open
.
req
.
headers
)
self
.
assertEqual
(
headers
[
'Content-length'
],
'2087'
)
self
.
assertTrue
(
headers
[
'Content-type'
]
.
startswith
(
'multipart/form-data'
))
...
...
@@ -120,6 +130,11 @@ class uploadTestCase(PyPIRCCommandTestCase):
'https://pypi.python.org/pypi'
)
self
.
assertIn
(
b
'xxx'
,
self
.
last_open
.
req
.
data
)
# The PyPI response body was echoed
results
=
self
.
get_logs
(
INFO
)
self
.
assertIn
(
'xyzzy
\n
'
,
results
[
-
1
])
def
test_suite
():
return
unittest
.
makeSuite
(
uploadTestCase
)
...
...
Misc/NEWS
Dosyayı görüntüle @
335a5128
...
...
@@ -29,6 +29,8 @@ Core and Builtins
Library
-------
- Fix TypeError on "setup.py upload --show-response".
- Issue #12226: HTTPS is now used by default when connecting to PyPI.
- Issue #20045: Fix "setup.py register --list-classifiers".
...
...
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