Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

tortoise: enable demandimport in shell extensions

import pythoncom first, in case the user does not have hg-1.2.1 or higher.
add win32traceutil to ignore list, since it is not referenced directly and
would be otherwise ignored by the demand loader.

Changeset 668f727ca6ab

Parent b11e92ef3802

by Steve Borho

Changes to one file · Browse files at 668f727ca6ab Showing diff from parent b11e92ef3802 Diff from another changeset...

Change 1 of 1 Show Entire File tortoisehg.py Stacked
 
6
7
8
 
 
 
 
 
9
10
11
 
6
7
8
9
10
11
12
13
14
15
16
@@ -6,6 +6,11 @@
 # Copyright (C) 2007 TK Soh <teekaysoh@gmail.com>  #   +import pythoncom +from mercurial import demandimport +demandimport.ignore.append('win32traceutil') +demandimport.enable() +  import os  import sys  import _winreg