[Happydoc-checkins] CVS: HappyDoc3/happydoclib utils.py,1.1,1.2
Brought to you by:
doughellmann,
krlosaqp
From: Doug H. <dou...@us...> - 2002-12-28 15:57:55
|
Update of /cvsroot/happydoc/HappyDoc3/happydoclib In directory sc8-pr-cvs1:/tmp/cvs-serv15652/happydoclib Modified Files: utils.py Log Message: Add docstrings. Index: utils.py =================================================================== RCS file: /cvsroot/happydoc/HappyDoc3/happydoclib/utils.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** utils.py 15 Dec 2002 17:00:44 -0000 1.1 --- utils.py 28 Dec 2002 15:57:53 -0000 1.2 *************** *** 26,30 **** # ! """ """ --- 26,30 ---- # ! """Utility functions which do not seem to fit elsewhere. """ *************** *** 67,70 **** --- 67,72 ---- def isSomethingThatLooksLikeDirectory(path): + """Returns boolean indicating whether or not path looks like a directory. + """ return (os.path.isdir(path) or |