We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd467ed commit 447c814Copy full SHA for 447c814
1 file changed
src/org/python/core/BuiltinDocs.java
@@ -252,7 +252,8 @@ public class BuiltinDocs {
252
"x.__delattr__('name') <==> del x.name";
253
254
public final static String unicode_doc =
255
- "unicode(string [, encoding[, errors]]) -> object\n" +
+ "unicode(object='') -> unicode object\n" +
256
+ "unicode(string[, encoding[, errors]]) -> unicode object\n" +
257
"\n" +
258
"Create a new Unicode object from the given encoded string.\n" +
259
"encoding defaults to the current default string encoding.\n" +
0 commit comments