Mercurial > p > roundup > code
comparison roundup/dist/command/build_doc.py @ 5074:7612b86bec69
Remove 'import *' statement from dist/command/build_doc.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.
| author | John Kristensen <john@jerrykan.com> |
|---|---|
| date | Fri, 10 Jun 2016 17:24:39 +1000 |
| parents | 7b575e1f7368 |
| children | 42bf0a707763 |
comparison
equal
deleted
inserted
replaced
| 5073:d0aa596daca8 | 5074:7612b86bec69 |
|---|---|
| 3 # All rights reserved. | 3 # All rights reserved. |
| 4 # For license terms see the file COPYING.txt. | 4 # For license terms see the file COPYING.txt. |
| 5 # | 5 # |
| 6 | 6 |
| 7 import os, sys | 7 import os, sys |
| 8 from stat import * | |
| 9 import os.path | 8 import os.path |
| 10 from shutil import * | |
| 11 import glob | 9 import glob |
| 12 | 10 |
| 13 from distutils.command import build | 11 from distutils.command import build |
| 14 from distutils.spawn import spawn, find_executable | 12 from distutils.spawn import spawn, find_executable |
| 15 from distutils.dep_util import newer, newer_group | 13 from distutils.dep_util import newer, newer_group |
