changeset 25934:e283c5d922db

demandimport: add __future__ to ignore list __future__ is special. We should definitely not be trying to lazy load it.
author Gregory Szorc <gregory.szorc@gmail.com>
date Sat, 08 Aug 2015 17:12:37 -0700
parents 1fc6c02782ab
children 49dd4fd3f283
files mercurial/demandimport.py
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/demandimport.py	Sat Aug 08 15:01:27 2015 -0700
+++ b/mercurial/demandimport.py	Sat Aug 08 17:12:37 2015 -0700
@@ -145,6 +145,7 @@
         return mod
 
 ignore = [
+    '__future__',
     '_hashlib',
     '_xmlplus',
     'fcntl',