diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-21 19:39:13 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-21 19:39:13 (GMT) |
commit | 0a3229de6b80cfa9e432ef5a9c72548569503075 (patch) | |
tree | da816b36e78da60f56980793b562c7d2d0cdd729 /Makefile.pre.in | |
parent | 7fe601c5bfa097b6c2aba78a3f517a1c4ded703d (diff) | |
download | cpython-0a3229de6b80cfa9e432ef5a9c72548569503075.zip cpython-0a3229de6b80cfa9e432ef5a9c72548569503075.tar.gz cpython-0a3229de6b80cfa9e432ef5a9c72548569503075.tar.bz2 |
Issue #13417: speed up utf-8 decoding by around 2x for the non-fully-ASCII case.
This almost catches up with pre-PEP 393 performance, when decoding needed
only one pass.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index df1c0e7..dbf290e 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -645,6 +645,7 @@ BYTESTR_DEPS = \ UNICODE_DEPS = $(BYTESTR_DEPS) \ $(srcdir)/Objects/stringlib/asciilib.h \ + $(srcdir)/Objects/stringlib/codecs.h \ $(srcdir)/Objects/stringlib/ucs1lib.h \ $(srcdir)/Objects/stringlib/ucs2lib.h \ $(srcdir)/Objects/stringlib/ucs4lib.h \ |