From: <lu...@us...> - 2010-06-12 22:50:58
|
Revision: 489 http://pyscard.svn.sourceforge.net/pyscard/?rev=489&view=rev Author: ludov Date: 2010-06-12 22:50:52 +0000 (Sat, 12 Jun 2010) Log Message: ----------- improve epydoc Modified Paths: -------------- trunk/pyscard/src/smartcard/reader/ReaderFactory.py Modified: trunk/pyscard/src/smartcard/reader/ReaderFactory.py =================================================================== --- trunk/pyscard/src/smartcard/reader/ReaderFactory.py 2010-06-12 22:48:25 UTC (rev 488) +++ trunk/pyscard/src/smartcard/reader/ReaderFactory.py 2010-06-12 22:50:52 UTC (rev 489) @@ -47,9 +47,9 @@ def createReader(clazz, readername): """Static method to create a reader from a reader clazz. - module: the python module that contains the reader class - clazz: the reader class name - readername: the reader name + @param module: the python module that contains the reader class + @param clazz: the reader class name + @param readername: the reader name """ if not ReaderFactory.factories.has_key(clazz): ReaderFactory.factories[clazz] = get_class(clazz).Factory() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |