##// END OF EJS Templates
memfilectx: make changectx argument mandatory in constructor (API)...
memfilectx: make changectx argument mandatory in constructor (API) committablefilectx has three subclasses: workingfilectx, memfilectx, and overlayfilectx. committablefilectx takes an optional (change) ctx instance to its constructor. If it's provided, it's set on the instance as self._changectx. If not, that property is supposed to be defined by the class. However, only workingfilectx does that. The other two will have the property undefined if it's not passed in the constructor. That seems bad to me. This patch makes the changectx argument to the memfilectx constructor mandatory because that fixes the failure I ran into. It seems like we should also fix the overlayfilectx case. Differential Revision: https://phab.mercurial-scm.org/D1658

File last commit:

r34424:1baa0772 default
r35401:8a0cac20 default
Show More
fedora20
11 lines | 169 B | text/plain | TextLexer
Mads Kiilerich
docker: use stable tags for fedora and centos...
r22442 FROM fedora:20
muxator
docker: try to follow the best practices for writing Dockerfiles...
r34424 RUN yum install -y \
gcc \
gettext \
make \
python-devel \
python-docutils \
rpm-build
Mads Kiilerich
dockerrpm: create a yum/dnf repo from the generated rpms...
r22444 # For creating repo meta data
RUN yum install -y createrepo