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