From: <nr...@us...> - 2008-08-29 19:56:57
|
Revision: 5268 http://jython.svn.sourceforge.net/jython/?rev=5268&view=rev Author: nriley Date: 2008-08-29 19:56:54 +0000 (Fri, 29 Aug 2008) Log Message: ----------- Fix some mispasted docstrings in the grp module. Modified Paths: -------------- trunk/jython/Lib/grp.py Modified: trunk/jython/Lib/grp.py =================================================================== --- trunk/jython/Lib/grp.py 2008-08-29 19:55:43 UTC (rev 5267) +++ trunk/jython/Lib/grp.py 2008-08-29 19:56:54 UTC (rev 5268) @@ -1,5 +1,5 @@ """ -"Access to the Unix group database. +Access to the Unix group database. Group entries are reported as 4-tuples containing the following fields from the group database, in order: @@ -45,7 +45,7 @@ """ getgrgid(id) -> tuple Return the group database entry for the given numeric group ID. If - id is not valid, raise KeyError."}, + id is not valid, raise KeyError. """ try: return struct_group(_posix.getgrgid(uid)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |