presentations/highlight-js/test/detect/python/default.txt

13 lines
266 B
Text
Raw Permalink Normal View History

2018-12-07 08:48:05 -06:00
@requires_authorization
def somefunc(param1='', param2=0):
r'''A docstring'''
if param1 > param2: # interesting
print 'Gre\'ater'
return (param2 - param1 + 1 + 0b10l) or None
class SomeClass:
pass
>>> message = '''interpreter
... prompt'''