You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
svn+ssh://[email protected]/python/trunk
........
r72054 | antoine.pitrou | 2009-04-27 23:53:26 +0200 (lun., 27 avril 2009) | 5 lines
Issue #1734234: Massively speedup `unicodedata.normalize()` when the
string is already in normalized form, by performing a quick check beforehand.
Original patch by Rauli Ruohonen.
........
/* An older version of the database is requested, quickchecks must be
735
+
disabled. */
736
+
if (self&&UCD_Check(self))
737
+
return0;
738
+
739
+
/* The two quickcheck bits at this shift mean 0=Yes, 1=Maybe, 2=No,
740
+
as described in http://unicode.org/reports/tr15/#Annex8. */
0 commit comments