mirror of
https://github.com/samba-team/samba.git
synced 2025-03-10 12:58:35 +03:00
Also, update to latest upstream version. Signed-Off-By: Jelmer Vernooij <jelmer@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
22 lines
367 B
Python
22 lines
367 B
Python
#: Okay
|
|
# 情
|
|
#: W291:1:6
|
|
print
|
|
#: W293:2:1
|
|
class Foo(object):
|
|
|
|
bang = 12
|
|
#: W291:2:35
|
|
'''multiline
|
|
string with trailing whitespace'''
|
|
#: W292:1:36 noeol
|
|
# This line doesn't have a linefeed
|
|
#: W292:1:5 E225:1:2 noeol
|
|
1+ 1
|
|
#: W292:1:27 E261:1:12 noeol
|
|
import this # no line feed
|
|
#: W292:3:22 noeol
|
|
class Test(object):
|
|
def __repr__(self):
|
|
return 'test'
|