##// END OF EJS Templates
extend unicode for Python 3.12
Matthias Bussonnier -
Show More
@@ -285,7 +285,7 b' if GENERATING_DOCUMENTATION:'
285 # write this). With below range we cover them all, with a density of ~67%
285 # write this). With below range we cover them all, with a density of ~67%
286 # biggest next gap we consider only adds up about 1% density and there are 600
286 # biggest next gap we consider only adds up about 1% density and there are 600
287 # gaps that would need hard coding.
287 # gaps that would need hard coding.
288 _UNICODE_RANGES = [(32, 0x3134b), (0xe0001, 0xe01f0)]
288 _UNICODE_RANGES = [(32, 0x323B0), (0xE0001, 0xE01F0)]
289
289
290 # Public API
290 # Public API
291 __all__ = ["Completer", "IPCompleter"]
291 __all__ = ["Completer", "IPCompleter"]
@@ -99,7 +99,7 b' def test_unicode_range():'
99 assert len_exp == len_test, message
99 assert len_exp == len_test, message
100
100
101 # fail if new unicode symbols have been added.
101 # fail if new unicode symbols have been added.
102 assert len_exp <= 138552, message
102 assert len_exp <= 143041, message
103
103
104
104
105 @contextmanager
105 @contextmanager
General Comments 0
You need to be logged in to leave comments. Login now