mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
14 lines
147 B
Python
14 lines
147 B
Python
from os import *
|
|
|
|
|
|
class Foo:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def bar(self):
|
|
pass
|
|
|
|
@property
|
|
def baz(self):
|
|
pass
|