hgext/highlight/highlight.py
changeset 48875 6000f5b25c9b
parent 43597 856cce0c255c
child 49550 5f22c92dcf3d
equal deleted inserted replaced
48874:af0b21d5a930 48875:6000f5b25c9b
     6 # GNU General Public License version 2 or any later version.
     6 # GNU General Public License version 2 or any later version.
     7 #
     7 #
     8 # The original module was split in an interface and an implementation
     8 # The original module was split in an interface and an implementation
     9 # file to defer pygments loading and speedup extension setup.
     9 # file to defer pygments loading and speedup extension setup.
    10 
    10 
    11 from __future__ import absolute_import
       
    12 
    11 
    13 from mercurial import demandimport
    12 from mercurial import demandimport
    14 
    13 
    15 demandimport.IGNORES.update([b'pkgutil', b'pkg_resources', b'__main__'])
    14 demandimport.IGNORES.update([b'pkgutil', b'pkg_resources', b'__main__'])
    16 
    15