From 54a884916d24771ce9696135898aad8f9430086a Mon Sep 17 00:00:00 2001 From: Luke Chen Date: Tue, 8 Dec 2020 14:11:38 +1100 Subject: [PATCH] WT-6983 Make wiredtiger.in text wrapping consistent across Python versions (#6168) --- dist/api_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/api_config.py b/dist/api_config.py index ecaaa065dd2..3ab0ec15504 100755 --- a/dist/api_config.py +++ b/dist/api_config.py @@ -132,7 +132,7 @@ def getconfcheck(c): fix_sentence_endings=True) # Separate at spaces, and after a set of non-breaking space indicators. w.wordsep_re = w.wordsep_simple_re = \ - re.compile(r'(\s+|(?<= )[\w_,.;:]*)') + re.compile(r'(\s+|(?<= )[\w_,.;:]+)') for c in api_data.methods[config_name].config: if 'undoc' in c.flags: continue