hgext3rd/__init__.py
author Yuya Nishihara <yuya@tcha.org>
Sat, 21 Sep 2019 17:15:50 +0900
changeset 43286 f8c114f20d2d
parent 43076 2372284d9457
child 48875 6000f5b25c9b
permissions -rw-r--r--
rust-cpython: require GIL to borrow immutable reference from PySharedRefCell Since the inner value may be leaked, we probably need GIL to guarantee that there's no data race. inner(py).borrow() is replaced with inner_shared(py).borrow(), which basically means any PySharedRefCell data should be accessed through PySharedRef wrapper.

# name space package to host third party extensions
from __future__ import absolute_import
import pkgutil

__path__ = pkgutil.extend_path(__path__, __name__)