[py] minor, comment buffer_add_utf8 call

mainly to apply lgtm suggestion, looks better also however,
some minor spacing is also applied.
This commit is contained in:
Ebrahim Byagowi 2020-07-13 20:41:13 +04:30 committed by GitHub
parent 2c1d699409
commit 2a182128b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 15 deletions

View File

@ -33,14 +33,13 @@ hb.buffer_set_message_func (buf, debugger.message, 1, 0)
#
# See https://github.com/harfbuzz/harfbuzz/pull/271
#
if False:
# If you do not care about cluster values reflecting Python
# string indices, then this is quickest way to add text to
# buffer:
hb.buffer_add_utf8 (buf, text.encode('utf-8'), 0, -1)
# hb.buffer_add_utf8 (buf, text.encode('utf-8'), 0, -1)
# Otherwise, then following handles both narrow and wide
# Python builds (the first item in the array is BOM, so we skip it):
elif sys.maxunicode == 0x10FFFF:
if sys.maxunicode == 0x10FFFF:
hb.buffer_add_utf32 (buf, array.array ('I', text.encode ('utf-32'))[1:], 0, -1)
else:
hb.buffer_add_utf16 (buf, array.array ('H', text.encode ('utf-16'))[1:], 0, -1)