File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+
9
+ ## [ 13.9.3] - 2024-10-22
10
+
11
+ ### Fixed
12
+
13
+ - Fixed broken regex that may have resulted in poor performance.
14
+
8
15
## [ 13.9.2] - 2024-10-04
9
16
10
17
### Fixed
Original file line number Diff line number Diff line change 7
7
from ._cell_widths import CELL_WIDTHS
8
8
9
9
# Regex to match sequence of the most common character ranges
10
- _is_single_cell_widths = re .compile ("^[\u0020 -\u006f \u00a0 \u02ff \u0370 -\u0482 ]*$" ).match
10
+ _is_single_cell_widths = re .compile ("^[\u0020 -\u007f \u00a0 \u02ff \u0370 -\u0482 ]*$" ).match
11
11
12
12
13
13
@lru_cache (4096 )
You can’t perform that action at this time.
0 commit comments