-
-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Re-use decoded buffer for single byte character sets (#175)
* Re-use decoded buffer for short texts This avoids issues with detecting string boundaries while improving performance (avoids multiple decoding of the sequence). Fixes #174 * 🔖 Bump version to 2.1.0.dev0 * 🐛 Workaround a potential bug in Python isspace table character bug discovered in Python, Zero Width No-Break Space located in Arabic Presentation Forms-B, Unicode 1.1 not acknowledged as space. Co-authored-by: TAHRI Ahmed R <[email protected]> Co-authored-by: Ahmed TAHRI <[email protected]>
- Loading branch information
1 parent
7cbd7fc
commit 4846792
Showing
6 changed files
with
304 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
Expose version | ||
""" | ||
|
||
__version__ = "2.0.12" | ||
__version__ = "2.1.0.dev0" | ||
VERSION = __version__.split(".") |
Oops, something went wrong.