hgext/__init__.py
author Pulkit Goyal <7895pulkit@gmail.com>
Wed, 08 Mar 2017 00:40:15 +0530
changeset 31219 f8e06821c118
parent 28450 155e3308289c
child 43076 2372284d9457
permissions -rw-r--r--
store: slice over a bytestring to get characters instead of ascii values On Python 2, >>> a = b'abc' >>> a[1] 'b' Whereas on python 3, >>> a = b'abc' >>> a[1] 98 >>> a[1:2] b'b' This does not change behaviour on python 2.

from __future__ import absolute_import
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)