diff options
author | Anthony Sottile <asottile@umich.edu> | 2021-01-24 01:23:17 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-24 12:23:17 +0300 |
commit | 15bd9efd01e44087664e78bf766865a6d2e06626 (patch) | |
tree | fb8e08f13fa8352c0187f235232c3ed03aae9edb /Misc | |
parent | Remove full stop from a bytes-related SyntaxError message (GH-24300) (diff) | |
download | cpython-15bd9efd01e44087664e78bf766865a6d2e06626.tar.gz cpython-15bd9efd01e44087664e78bf766865a6d2e06626.tar.bz2 cpython-15bd9efd01e44087664e78bf766865a6d2e06626.zip |
bpo-43014: Improve performance of tokenize.tokenize by 20-30%
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-01-24-00-37-40.bpo-43014.BVPhEr.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-01-24-00-37-40.bpo-43014.BVPhEr.rst b/Misc/NEWS.d/next/Library/2021-01-24-00-37-40.bpo-43014.BVPhEr.rst new file mode 100644 index 00000000000..02898e4a3a4 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-01-24-00-37-40.bpo-43014.BVPhEr.rst @@ -0,0 +1 @@ +Improve performance of :mod:`tokenize` by 20-30%. Patch by Anthony Sottile. |