diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-09-01 18:53:26 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-09-01 18:53:26 +0200 |
commit | d077404170160a6936e448a40cbb74a95d19ff3c (patch) | |
tree | 1ab0d5a03a46659e39de2e611e89642d9de5867b /src/make_unicode_fold_data.py | |
parent | 6b31069db6198cd50cc17f2c63917dd2df5775fb (diff) | |
parent | b62fc1758f4ae8459e6d7e8386ca547274b4daa2 (diff) |
Updated version 6.6.1 from 'upstream/6.6.1'
with Debian dir 43da96f2ad45c214a26fc8b155a175b1c828e493
Diffstat (limited to 'src/make_unicode_fold_data.py')
-rwxr-xr-x | src/make_unicode_fold_data.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/make_unicode_fold_data.py b/src/make_unicode_fold_data.py index 3f7d416..f4ad321 100755 --- a/src/make_unicode_fold_data.py +++ b/src/make_unicode_fold_data.py @@ -1,5 +1,7 @@ #!/usr/bin/python # -*- coding: utf-8 -*- +# make_unicode_fold_data.py +# Copyright (c) 2016-2017 K.Kosako import sys import re @@ -15,7 +17,7 @@ DataName = 'OnigUnicodeFolds' ENCODING = 'utf-8' LINE_REG = re.compile("([0-9A-F]{1,6}); (.); ([0-9A-F]{1,6})(?: ([0-9A-F]{1,6}))?(?: ([0-9A-F]{1,6}))?;(?:\s*#\s*)(.*)") -VERSION_REG = re.compile("#.*-(\d\.\d\.\d)\.txt") +VERSION_REG = re.compile("#.*-(\d+\.\d+\.\d+)\.txt") VERSION_INFO = None |