Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Factory
python-ftfy
update-wcwidth.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File update-wcwidth.patch of Package python-ftfy
From 5d975c6bb1836d4a1abf0e44675a08f1a9321be9 Mon Sep 17 00:00:00 2001 From: Elia Robyn Lake <elial@ec.ai> Date: Tue, 21 Nov 2023 18:40:17 -0500 Subject: [PATCH] update wcwidth --- ftfy/formatting.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Index: python-ftfy-6.0.3/ftfy/formatting.py =================================================================== --- python-ftfy-6.0.3.orig/ftfy/formatting.py +++ python-ftfy-6.0.3/ftfy/formatting.py @@ -28,7 +28,7 @@ def character_width(char: str) -> int: >>> character_width('\n') -1 """ - return wcwidth(char) + return int(wcwidth(char)) def monospaced_width(text: str) -> int: @@ -47,7 +47,7 @@ def monospaced_width(text: str) -> int: >>> len('ちゃぶ台返し') 6 >>> monospaced_width('owl\N{SOFT HYPHEN}flavored') - 12 + 11 >>> monospaced_width('example\x80') -1 @@ -70,7 +70,7 @@ def monospaced_width(text: str) -> int: # # Remove terminal escapes before calculating width, because if they are # displayed as intended, they will have zero width. - return wcswidth(remove_terminal_escapes(normalize('NFC', text))) + return int(wcswidth(remove_terminal_escapes(normalize("NFC", text)))) def display_ljust(text, width, fillchar=' '):
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor