Mercurial > public > mercurial-scm > hg-stable
diff mercurial/node.py @ 3877:abaee83ce0a6
Replace demandload with new demandimport
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Wed, 13 Dec 2006 13:27:09 -0600 |
parents | 3b4e00cba57a |
children | e45fc5d03798 |
line wrap: on
line diff
--- a/mercurial/node.py Tue Dec 12 18:16:23 2006 -0600 +++ b/mercurial/node.py Wed Dec 13 13:27:09 2006 -0600 @@ -7,8 +7,7 @@ of the GNU General Public License, incorporated herein by reference. """ -from demandload import demandload -demandload(globals(), "binascii") +import binascii nullrev = -1 nullid = "\0" * 20