Skip to content

Commit 0af23dc

Browse files
committed
Remove 'import *' statement from xmlrpc.py
There are various 'import *' statements scattered through the code which are generally not a good thing. These should be fairly safe changes, but I'll commit them one file at a time to make it easier to track down issues with a bisect if they crop up later.
1 parent 40a9c34 commit 0af23dc

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

roundup/xmlrpc.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@
55
#
66

77
from roundup import hyperdb
8-
from roundup.cgi.exceptions import *
9-
from roundup.exceptions import UsageError
8+
from roundup.exceptions import Unauthorised, UsageError
109
from roundup.date import Date, Range, Interval
1110
from roundup import actions
12-
from SimpleXMLRPCServer import *
11+
from SimpleXMLRPCServer import SimpleXMLRPCDispatcher
1312
from xmlrpclib import Binary
1413

1514
def translate(value):

0 commit comments

Comments
 (0)