mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Merged revisions 76956 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r76956 | tarek.ziade | 2009-12-21 02:22:46 +0100 (Mon, 21 Dec 2009) | 1 line massive import cleaning in Distutils ........
This commit is contained in:
parent
8b9361a26d
commit
88e2c5d35a
24 changed files with 62 additions and 78 deletions
|
|
@ -1,8 +1,8 @@
|
|||
"""distutils.command.upload
|
||||
|
||||
Implements the Distutils 'upload' subcommand (upload package to PyPI)."""
|
||||
import sys
|
||||
import os, io
|
||||
import os
|
||||
import io
|
||||
import socket
|
||||
import platform
|
||||
from urllib.request import urlopen, Request, HTTPError
|
||||
|
|
@ -10,7 +10,7 @@ from base64 import standard_b64encode
|
|||
from urllib.parse import urlparse
|
||||
from hashlib import md5
|
||||
|
||||
from distutils.errors import *
|
||||
from distutils.errors import DistutilsOptionError
|
||||
from distutils.core import PyPIRCCommand
|
||||
from distutils.spawn import spawn
|
||||
from distutils import log
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue