From: <fwi...@us...> - 2008-07-26 14:41:48
|
Revision: 5003 http://jython.svn.sourceforge.net/jython/?rev=5003&view=rev Author: fwierzbicki Date: 2008-07-26 14:41:46 +0000 (Sat, 26 Jul 2008) Log Message: ----------- Changing comment convention back to proper style (start with Returns). Modified Paths: -------------- branches/asm/src/org/python/core/imp.java Modified: branches/asm/src/org/python/core/imp.java =================================================================== --- branches/asm/src/org/python/core/imp.java 2008-07-26 01:55:04 UTC (rev 5002) +++ branches/asm/src/org/python/core/imp.java 2008-07-26 14:41:46 UTC (rev 5003) @@ -240,12 +240,12 @@ } /** - * createFromCode returns a module with the given name whose contents are - * the results of running c. Sets __file__ on the module to be - * moduleLocation unless moduleLocation is null. If c comes from a local - * .py file or compiled $py.class class moduleLocation should be the result - * of running new File(moduleLocation).getAbsoultePath(). If c comes from a - * remote file or is a jar moduleLocation should be the full uri for c. + * Returns a module with the given name whose contents are the results of + * running c. Sets __file__ on the module to be moduleLocation unless + * moduleLocation is null. If c comes from a local .py file or compiled + * $py.class class moduleLocation should be the result of running new + * File(moduleLocation).getAbsoultePath(). If c comes from a remote file or + * is a jar moduleLocation should be the full uri for c. */ public static PyObject createFromCode(String name, PyCode c, String moduleLocation) { PyModule module = addModule(name); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |