Submitter | Mads Kiilerich |
---|---|
Date | Oct. 14, 2016, 1:03 a.m. |
Message ID | <c0fd76f612735f035410.1476407035@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/17071/ |
State | Accepted |
Headers | show |
Comments
On 10/14/2016 03:03 AM, Mads Kiilerich wrote: > # HG changeset patch > # User Mads Kiilerich <madski@unity3d.com> > # Date 1476407019 -7200 > # Fri Oct 14 03:03:39 2016 +0200 > # Node ID c0fd76f612735f0354102603ee630437208d8336 > # Parent c0410814002f467c24ef07ce73850ba15b306f8e > demandimport: disable lazy import of __builtin__ Pushed, thanks.
Patch
diff --git a/mercurial/demandimport.py b/mercurial/demandimport.py --- a/mercurial/demandimport.py +++ b/mercurial/demandimport.py @@ -291,6 +291,8 @@ ignore = [ 'sqlalchemy.events', # has import-time side effects (issue5085) # setuptools 8 expects this module to explode early when not on windows 'distutils.msvc9compiler', + '__builtin__', + 'builtins', ] if _pypy: