Mercurial > hg-stable
diff mercurial/commands.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 | 84905561ad41 |
children | cd79d9ab5e42 |
line wrap: on
line diff
--- a/mercurial/commands.py Wed Nov 06 18:19:04 2013 -0500 +++ b/mercurial/commands.py Wed Nov 06 16:48:06 2013 -0500 @@ -17,7 +17,8 @@ import merge as mergemod import minirst, revset, fileset import dagparser, context, simplemerge, graphmod -import random, setdiscovery, treediscovery, dagutil, pvec, localrepo +import random +import setdiscovery, treediscovery, dagutil, pvec, localrepo import phases, obsolete table = {}