Mercurial > public > mercurial-scm > hg
diff mercurial/fancyopts.py @ 20034:1e5b38a919dd
cleanup: move stdlib imports to their own import statement
There are a few warnings still produced by my import checker, but
those are false positives produced by modules that share a name with
stdlib modules.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Wed, 06 Nov 2013 16:48:06 -0500 |
parents | c4717f44c1f1 |
children | 753af9ee7c81 |
line wrap: on
line diff
--- a/mercurial/fancyopts.py Wed Nov 06 18:19:04 2013 -0500 +++ b/mercurial/fancyopts.py Wed Nov 06 16:48:06 2013 -0500 @@ -5,7 +5,8 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2 or any later version. -import getopt, util +import getopt +import util from i18n import _ def gnugetopt(args, options, longoptions):