tests/test-context.py.out
author Nicolas Dumazet <nicdumz.commits@gmail.com>
Wed, 08 Apr 2009 13:29:51 +0900
changeset 8068 389e2820280d
parent 4110 20af6a2f0b0e
child 14379 bd23d5f28bbb
permissions -rw-r--r--
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()

workingfilectx.date = (1000, 0)