contrib/win32/hg.bat
author Mads Kiilerich <madski@unity3d.com>
Tue, 15 Jan 2013 18:42:04 +0100
changeset 18379 e0c4f4ba624c
parent 12653 5096faaa280e
child 19091 f01a351db791
permissions -rw-r--r--
tests: fix doctest stability over Python versions pprint ain't pretty in Python 2.4: Changed in version 2.5: Dictionaries are sorted by key before the display is computed; before 2.5, a dictionary was sorted only if its display required more than one line, although that wasn’t documented. Fixes issue introduced in 404feac78b8a.

@echo off
rem Windows Driver script for Mercurial

setlocal
set HG=%~f0

rem Use a full path to Python (relative to this script) as the standard Python
rem install does not put python.exe on the PATH...
rem %~dp0 is the directory of this script

"%~dp0..\python" "%~dp0hg" %*
endlocal