Skip to content

Commit

Permalink
llvm-build: Get rid of 'import *'
Browse files Browse the repository at this point in the history
This allows pyflakes catching more errors in the script.

Differential Revision: http://reviews.llvm.org/D3334



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207012 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
wanders committed Apr 23, 2014
1 parent 1188a75 commit d25fec6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion utils/llvm-build/llvmbuild/componentinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import ConfigParser as configparser
import sys

from llvmbuild.util import *
from llvmbuild.util import fatal, warning

class ParseError(Exception):
pass
Expand Down
2 changes: 1 addition & 1 deletion utils/llvm-build/llvmbuild/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import llvmbuild.componentinfo as componentinfo
import llvmbuild.configutil as configutil

from llvmbuild.util import *
from llvmbuild.util import fatal, note

###

Expand Down

0 comments on commit d25fec6

Please sign in to comment.