def description()

in commands/FBPrintCommands.py [0:0]


    def description(self):
        return (
            "Print the contents of NSData object as string.\n"
            "Supported encodings:\n"
            "- ascii,\n"
            "- utf8,\n"
            "- utf16, unicode,\n"
            "- utf16l (Little endian),\n"
            "- utf16b (Big endian),\n"
            "- utf32,\n"
            "- utf32l (Little endian),\n"
            "- utf32b (Big endian),\n"
            "- latin1, iso88591 (88591),\n"
            "- latin2, iso88592 (88592),\n"
            "- cp1251 (1251),\n"
            "- cp1252 (1252),\n"
            "- cp1253 (1253),\n"
            "- cp1254 (1254),\n"
            "- cp1250 (1250),"
        )