This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author malin
Recipients BreamoreBoy, ezio.melotti, malin, serhiy.storchaka, vstinner
Date 2014-07-24.14:47:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1406213224.04.0.0245353886801.issue21084@psf.upfronthosting.co.za>
In-reply-to
Content
I wrote this code, but I don't know how to make a patch.

Insert these codes in C:\Python34\Lib\idlelib\IOBinding.py
Around line 234, before this line:
self.text.delete("1.0", "end")


        # check non-bmp characters
        line_count = 1
        position_count = 1
        for char in chars:
            if char == '\n':
                line_count += 1
                position_count = 1
            if ord(char) > 0xFFFF:
                nonbmp_msg = ("IDLE can't display non-BMP characters "
                              "(codepoint above 0xFFFF).\n"
                              "A non-BMP character found at line %d, "
                              "position %d of file %s, codepoint 0x%X.\n"
                              "Please open this file with another editor.")
                tkMessageBox.showerror("non-BMP character",
                                        nonbmp_msg %
                                       (line_count, position_count,
                                        filename, ord(char)),
                                       parent=self.text)
                return False
            position_count += 1
History
Date User Action Args
2014-07-24 14:47:04malinsetrecipients: + malin, vstinner, ezio.melotti, BreamoreBoy, serhiy.storchaka
2014-07-24 14:47:04malinsetmessageid: <1406213224.04.0.0245353886801.issue21084@psf.upfronthosting.co.za>
2014-07-24 14:47:04malinlinkissue21084 messages
2014-07-24 14:47:03malincreate