- Apr 27, 2017
-
-
Yuya Nishihara authored
Proxy __dict__ and __doc__ explicitly instead. I'm not sure which is less evil, but this seems slightly simpler than hooking all attribute accesses.
-
- Apr 28, 2017
-
-
Yuya Nishihara authored
It's widely used in our codebase.
-
- May 01, 2017
-
-
Yuya Nishihara authored
_demandmod class is getting bigger, and I don't want to put more things in a dense form.
-
Yuya Nishihara authored
This looks better, and __eq__() may be overridden in an undesired way.
-
- May 21, 2017
-
-
Siddharth Agarwal authored
This implementation uses the new importlib finder/loader functionality available in Python 3.5 and up. # no-check-commit
-
Siddharth Agarwal authored
We're going to use the same ignore list for Python 3.
-
Siddharth Agarwal authored
In Python 3, demand loading is per-package. Keeping demandimport in the mercurial package would disable demand loading for any modules in mercurial.
-