diff options
Diffstat (limited to 'Lib/distutils/command/register.py')
-rw-r--r-- | Lib/distutils/command/register.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Lib/distutils/command/register.py b/Lib/distutils/command/register.py index bdf5f8f..7d3dc53 100644 --- a/Lib/distutils/command/register.py +++ b/Lib/distutils/command/register.py @@ -7,13 +7,15 @@ Implements the Distutils 'register' command (register with the repository). __revision__ = "$Id$" -import os, string, getpass +import os +import string +import getpass import io -import urllib.parse, urllib.request +import urllib.parse +import urllib.request from warnings import warn from distutils.core import PyPIRCCommand -from distutils.errors import * from distutils import log class register(PyPIRCCommand): |