contrib/docker/debian-jessie
author Jun Wu <quark@fb.com>
Wed, 22 Jun 2016 21:30:49 +0100
changeset 29396 d0ae5b8f80dc
parent 24973 4c4d0012db4f
child 33023 e02bae37af30
permissions -rw-r--r--
revlog: add a fast path for "ambiguous identifier" Before fd1bb7c, if the C index.partialmatch raises RevlogError, the Python code raises "ambiguous identifier" error immediately, which is efficient. fd1bb7c took hidden revisions into consideration and forced the slow path enumerating the changelog to double-check hidden revisions. But it's not necessary if we know the revlog has no hidden revisions. This patch adds back the fast path for unfiltered revlogs.

FROM debian:jessie
RUN apt-get update && apt-get install -y \
  build-essential \
  debhelper \
  dh-python \
  devscripts \
  python \
  python-all-dev \
  python-docutils \
  zip \
  unzip