tests/test-install
author Nicolas Dumazet <nicdumz.commits@gmail.com>
Wed, 08 Apr 2009 13:29:51 +0900
changeset 8068 389e2820280d
parent 4365 46280c004f22
child 9734 36c388a1aa51
permissions -rwxr-xr-x
inotify: Simplifying init code simplifying retry = False try: try: doA() retry = True except X: doB() retry = True except: doC() pass if retry: doD() -- into -- try: try: doA() except X: doB() except: doC() pass else: doD()

#!/bin/sh

hg debuginstall