Staging
v0.8.1
Revision 685b806549cc956aeeb3a57fe15ee5a4d1704aed authored by Miss Islington (bot) on 07 June 2019, 06:37:32 UTC, committed by GitHub on 07 June 2019, 06:37:32 UTC

This avoids the search dialogs being hidden behind the editor window.
(cherry picked from commit 554450fb4e95066e825bdb4a2d544a490daeebdc)

Co-authored-by: Tal Einat <taleinat@gmail.com>
1 parent dc20fc4
Raw File
tokenize_tests-utf8-coding-cookie-and-utf8-bom-sig.txt
# -*- coding: utf-8 -*-
# IMPORTANT: this file has the utf-8 BOM signature '\xef\xbb\xbf'
# at the start of it.  Make sure this is preserved if any changes
# are made!

# Arbitrary encoded utf-8 text (stolen from test_doctest2.py).
x = 'ЉЊЈЁЂ'
def y():
    """
    And again in a comment.  ЉЊЈЁЂ
    """
    pass
back to top