From: <pj...@us...> - 2009-10-17 16:57:31
|
Revision: 6868 http://jython.svn.sourceforge.net/jython/?rev=6868&view=rev Author: pjenvey Date: 2009-10-17 16:57:13 +0000 (Sat, 17 Oct 2009) Log Message: ----------- hardcode the __new__ descriptors' __doc__ Modified Paths: -------------- trunk/jython/src/org/python/core/PyNewWrapper.java Modified: trunk/jython/src/org/python/core/PyNewWrapper.java =================================================================== --- trunk/jython/src/org/python/core/PyNewWrapper.java 2009-10-17 16:10:18 UTC (rev 6867) +++ trunk/jython/src/org/python/core/PyNewWrapper.java 2009-10-17 16:57:13 UTC (rev 6868) @@ -19,6 +19,7 @@ public PyNewWrapper(PyType type, String name, int minargs, int maxargs) { super(type, new DefaultInfo(name, minargs, maxargs)); for_type = (PyType)getSelf(); + doc = BuiltinDocs.type___new___doc; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |