From e2f7bc6ec0e424c5b10e22b767291c923b4c3229 Mon Sep 17 00:00:00 2001 From: "Kai (Kazuya Ito)" Date: Fri, 31 Oct 2025 08:12:39 +0900 Subject: [PATCH 1/3] 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) From c1052fd115c2abc353f76d41e6d879ba844a6f31 Mon Sep 17 00:00:00 2001 From: "Kai (Kazuya Ito)" Date: Sat, 29 Nov 2025 13:14:31 +0900 Subject: [PATCH 2/3] Update typing.rst --- Doc/library/typing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 58f3a8ecd7c2e0..de60bfc401732b 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -104,7 +104,7 @@ Type aliases are useful for simplifying complex type signatures. For example:: ... The :keyword:`type` statement is new in Python 3.12. For backwards -compatibility, type aliases can also be created through simple assignment:: +compatibility, type aliases can also be created through `assignment statements `_: Vector = list[float] From 009d3b8d6583b76c4f6ebcda3e575f7a44e6d482 Mon Sep 17 00:00:00 2001 From: "Kai (Kazuya Ito)" Date: Sat, 29 Nov 2025 13:20:45 +0900 Subject: [PATCH 3/3] Update typing.rst --- Doc/library/typing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index de60bfc401732b..58f3a8ecd7c2e0 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -104,7 +104,7 @@ Type aliases are useful for simplifying complex type signatures. For example:: ... The :keyword:`type` statement is new in Python 3.12. For backwards -compatibility, type aliases can also be created through `assignment statements `_: +compatibility, type aliases can also be created through simple assignment:: Vector = list[float]