From 72f40b9cb1c55ea4340c42a965dbea641d69449d Mon Sep 17 00:00:00 2001 From: Jack <85963782+JacksonElia@users.noreply.github.com> Date: Mon, 27 Jul 2026 17:46:27 -0700 Subject: [PATCH 1/2] Fix critical typo --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 44cbe11f12e..557fbbaedbc 100644 --- a/README.rst +++ b/README.rst @@ -201,7 +201,7 @@ If the resources mentioned above don't answer your questions or simply overwhelm Concurrency ~~~~~~~~~~~ -Since v20.0, ``python-telegram-bot`` is built on top of Pythons ``asyncio`` module. +Since v20.0, ``python-telegram-bot`` is built on top of Python's ``asyncio`` module. Because ``asyncio`` is in general single-threaded, ``python-telegram-bot`` currently does not aim to be thread-safe. Noteworthy parts of ``python-telegram-bots`` API that are likely to cause issues (e.g. race conditions) when used in a multi-threaded setting include: From 23c19a047c2faeadef888d8d818b0da3d6730fe7 Mon Sep 17 00:00:00 2001 From: Jack <85963782+JacksonElia@users.noreply.github.com> Date: Thu, 30 Jul 2026 14:44:30 -0700 Subject: [PATCH 2/2] Update README.rst Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com> --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 557fbbaedbc..107dd9e048f 100644 --- a/README.rst +++ b/README.rst @@ -203,7 +203,7 @@ Concurrency Since v20.0, ``python-telegram-bot`` is built on top of Python's ``asyncio`` module. Because ``asyncio`` is in general single-threaded, ``python-telegram-bot`` currently does not aim to be thread-safe. -Noteworthy parts of ``python-telegram-bots`` API that are likely to cause issues (e.g. race conditions) when used in a multi-threaded setting include: +Noteworthy parts of ``python-telegram-bot``'s API that are likely to cause issues (e.g. race conditions) when used in a multi-threaded setting include: * ``telegram.ext.Application/Updater.update_queue`` * ``telegram.ext.ConversationHandler.check/handle_update``