mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
23 lines
342 B
Python
23 lines
342 B
Python
|
# Literally included file using Python highlighting
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
foo = "Including Unicode characters: üöä"
|
||
|
|
||
|
class Foo:
|
||
|
pass
|
||
|
|
||
|
class Bar:
|
||
|
def baz():
|
||
|
pass
|
||
|
|
||
|
# comment after Bar class definition
|
||
|
def bar(): pass
|
||
|
|
||
|
def block_start_with_comment():
|
||
|
# Comment
|
||
|
return 1
|
||
|
|
||
|
def block_start_with_blank():
|
||
|
|
||
|
return 1
|