2016-01-20 22:48:16 +09:00
|
|
|
# Literally included file using Python highlighting
|
|
|
|
|
|
2025-01-03 01:09:26 +00:00
|
|
|
foo = 'Including Unicode characters: üöä'
|
|
|
|
|
|
2016-01-20 22:48:16 +09:00
|
|
|
|
|
|
|
|
class Foo:
|
|
|
|
|
pass
|
|
|
|
|
|
2025-01-03 01:09:26 +00:00
|
|
|
|
2016-01-20 22:48:16 +09:00
|
|
|
class Bar:
|
|
|
|
|
def baz():
|
|
|
|
|
pass
|
|
|
|
|
|
2025-01-03 01:09:26 +00:00
|
|
|
|
2016-01-20 22:48:16 +09:00
|
|
|
# comment after Bar class definition
|
|
|
|
|
def bar(): pass
|
|
|
|
|
|
2025-01-03 01:09:26 +00:00
|
|
|
|
2016-01-20 22:48:16 +09:00
|
|
|
def block_start_with_comment():
|
|
|
|
|
# Comment
|
|
|
|
|
return 1
|
|
|
|
|
|
2025-01-03 01:09:26 +00:00
|
|
|
|
2016-01-20 22:48:16 +09:00
|
|
|
def block_start_with_blank():
|
|
|
|
|
|
|
|
|
|
return 1
|
2017-02-12 17:27:57 +09:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class Qux:
|
|
|
|
|
def quux(self):
|
|
|
|
|
pass
|