hg
changeset 249 619e775aa7f9
parent 248 b7645b3c86ff
child 280 a69c3b2957d1
equal deleted inserted replaced
248:b7645b3c86ff 249:619e775aa7f9
     6 # Copyright 2005 Matt Mackall <mpm@selenic.com>
     6 # Copyright 2005 Matt Mackall <mpm@selenic.com>
     7 #
     7 #
     8 # This software may be used and distributed according to the terms
     8 # This software may be used and distributed according to the terms
     9 # of the GNU General Public License, incorporated herein by reference.
     9 # of the GNU General Public License, incorporated herein by reference.
    10 
    10 
    11 # the psyco compiler makes commits a bit faster
       
    12 # and makes changegroup merge about 20 times slower!
       
    13 # try:
       
    14 #    import psyco
       
    15 #    psyco.full()
       
    16 # except:
       
    17 #    pass
       
    18 
       
    19 import sys
       
    20 from mercurial import commands
    11 from mercurial import commands
    21 
    12 
    22 sys.exit(commands.dispatch(sys.argv[1:]))
    13 commands.run()
    23 
    14