1#cython: c_string_type = str
2#cython: c_string_encoding = ascii
3
4"End of first directives"
5
6include "unicode_ascii_auto_encoding.pyx"
7
8auto_string_type = str
9
10def check_auto_string_type():
11    """
12    >>> check_auto_string_type()
13    """
14    assert auto_string_type is str
15