tests/test-keyword.hg
author Nicolas Dumazet <nicdumz.commits@gmail.com>
Wed, 08 Apr 2009 13:29:51 +0900
changeset 8068 389e2820280d
parent 6061 de08788511d7
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()
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6061
de08788511d7 test-keyword: make it run under Windows
Patrick Mezard <pmezard@gmail.com>
parents:
diff changeset
     1
(binary:application/octet-stream)