1# Copyright 2009 Daniel James 2# 3# Use, modification and distribution is subject to the Boost Software 4# License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 5# http://www.boost.org/LICENSE_1_0.txt) 6 7#` This should appear when =stub.py= is included. 8 9#[foo_py 10"""` 11 This is the Python [*['foo]] function. 12 13 This description can have paragraphs... 14 15 * lists 16 * etc. 17 18 And any quickbook block markup. 19""" 20 21def foo(): 22 # return 'em, foo man! 23 return "foo" 24 25#] 26 27print foo()