@@ -172,7 +172,7 @@ def create_grapheme_data(f):
172
172
stype = "&'static [(&'static str, &'static [&'static str])]"
173
173
dtype = "&'static [(&'static str, &'static [&'static str], &'static [&'static str])]"
174
174
f .write (" // official Unicode test data\n " )
175
- f .write (" // http://www.unicode.org/Public/9 .0.0/ucd/auxiliary/GraphemeBreakTest.txt\n " )
175
+ f .write (" // http://www.unicode.org/Public/10 .0.0/ucd/auxiliary/GraphemeBreakTest.txt\n " )
176
176
unicode .emit_table (f , "TEST_SAME" , test_same , stype , True , showfun , True )
177
177
unicode .emit_table (f , "TEST_DIFF" , test_diff , dtype , True , showfun , True )
178
178
@@ -187,7 +187,7 @@ def create_words_data(f):
187
187
188
188
wtype = "&'static [(&'static str, &'static [&'static str])]"
189
189
f .write (" // official Unicode test data\n " )
190
- f .write (" // http://www.unicode.org/Public/9 .0.0/ucd/auxiliary/WordBreakTest.txt\n " )
190
+ f .write (" // http://www.unicode.org/Public/10 .0.0/ucd/auxiliary/WordBreakTest.txt\n " )
191
191
unicode .emit_table (f , "TEST_WORD" , test , wtype , True , showfun , True )
192
192
193
193
def create_sentence_data (f ):
@@ -201,7 +201,7 @@ def create_sentence_data(f):
201
201
202
202
wtype = "&'static [(&'static str, &'static [&'static str])]"
203
203
f .write (" // official Unicode test data\n " )
204
- f .write (" // http://www.unicode.org/Public/UNIDATA /auxiliary/SentenceBreakTest.txt\n " )
204
+ f .write (" // http://www.unicode.org/Public/10.0.0/ucd /auxiliary/SentenceBreakTest.txt\n " )
205
205
unicode .emit_table (f , "TEST_SENTENCE" , test , wtype , True , showfun , True )
206
206
207
207
if __name__ == "__main__" :
0 commit comments