From e2f7bc6ec0e424c5b10e22b767291c923b4c3229 Mon Sep 17 00:00:00 2001 From: "Kai (Kazuya Ito)" Date: Fri, 31 Oct 2025 08:12:39 +0900 Subject: [PATCH] Update datastructures.rst I changed **the Unicode code point number** to **Unicode code point** because **the Unicode code point** already has the meaning of a number. --- Doc/tutorial/datastructures.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/tutorial/datastructures.rst b/Doc/tutorial/datastructures.rst index 1332c53f39687e..573a6a04371f8a 100644 --- a/Doc/tutorial/datastructures.rst +++ b/Doc/tutorial/datastructures.rst @@ -720,7 +720,7 @@ sequences of the same type, the lexicographical comparison is carried out recursively. If all items of two sequences compare equal, the sequences are considered equal. If one sequence is an initial sub-sequence of the other, the shorter sequence is the smaller (lesser) one. Lexicographical ordering for -strings uses the Unicode code point number to order individual characters. +strings uses the Unicode code point to order individual characters. Some examples of comparisons between sequences of the same type:: (1, 2, 3) < (1, 2, 4)