-
Notifications
You must be signed in to change notification settings - Fork 283
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
describe cursor_pos ambiguity and bump protocol to 5.2
cursor_pos with characters after 0x10000 is ambiguous with respect to surrogate pairs in versions 5.1 and earlier due to widespread bugs in javascript frontends
- Loading branch information
Showing
2 changed files
with
56 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
version_info = (5, 1, 0, 'dev') | ||
__version__ = '.'.join(map(str, version_info)) | ||
|
||
protocol_version_info = (5, 1) | ||
protocol_version_info = (5, 2) | ||
protocol_version = "%i.%i" % protocol_version_info |