3111c6833fec52f642fef203c821e52895bd0da3
[samba.git] / third_party / pep8 / testsuite / E90.py
1 #: E901
2 }
3 #: E901
4 = [x
5 #: E901 E101 W191
6 while True:
7     try:
8             pass
9         except:
10                 print 'Whoops'
11 #: E122 E225 E251 E251 E701
12
13 # Do not crash if code is invalid
14 if msg:
15     errmsg = msg % progress.get(cr_dbname))
16
17 def lasting(self, duration=300):
18     progress = self._progress.setdefault('foo', {}
19 #: Okay
20
21 # Issue #119
22 # Do not crash with Python2 if the line endswith '\r\r\n'
23 EMPTY_SET = set()
24 SET_TYPE = type(EMPTY_SET)
25 toto = 0 + 0
26 #: