mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
10 lines
163 B
Python
10 lines
163 B
Python
|
|
#Half Surrogate pairs
|
|
u'[\uD800-\uDBFF][\uDC00-\uDFFF]'
|
|
#Outside BMP
|
|
u'[\U00010000-\U0010ffff]'
|
|
|
|
#Troublesome format strings
|
|
u'{}\r{}{:<{width}}'
|
|
u'{}\r{}{:<{}}'
|