Is it possible to use POD(plain old documentation) with Python?

Viewed 1195

I was wondering if it is possible to use POD(plain old documentation) with Python? And how should I do it?

2 Answers

Yes. Use '''.

#!/usr/bin/python3                                                                       

'''
=pod
                                                                                     
=head1 NAME
...
=cut
'''

import sys
Related