Staging
v0.5.1
https://github.com/python/cpython
Revision d1a0a960ee493262fb95a0f5b795b5b6d75cecb8 authored by Jason R. Coombs on 25 October 2020, 18:45:05 UTC, committed by GitHub on 25 October 2020, 18:45:05 UTC
* bpo-42043: Add support for zipfile.Path inheritance as introduced in zipp 3.2.0.

* Add blurb.
1 parent 14cdc21
Raw File
Tip revision: d1a0a960ee493262fb95a0f5b795b5b6d75cecb8 authored by Jason R. Coombs on 25 October 2020, 18:45:05 UTC
bpo-42043: Add support for zipfile.Path subclasses (#22716)
Tip revision: d1a0a96
tokenize_tests-no-coding-cookie-and-utf8-bom-sig-only.txt
# 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