From 3b9c7d4e3cd43fee35c264d5b8cf62c83864f9eb Mon Sep 17 00:00:00 2001 From: Romuald Brunet Date: Wed, 18 Oct 2023 10:09:13 +0200 Subject: [PATCH] python classname capitalization fix Small fix in ThingsToKnow to "properly" capitalize `BytesIO` (the href was already OK) --- ThingsToKnow.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ThingsToKnow.rst b/ThingsToKnow.rst index 5bcf2e61..208051ec 100644 --- a/ThingsToKnow.rst +++ b/ThingsToKnow.rst @@ -61,5 +61,5 @@ Things to know (best practices and "issues") READ IT !!! * Some plugins (most notably Python and Perl) have code auto-reloading facilities. Although they might sound very appealing, you MUST use them only under development as they are really heavy-weight. For example the Python --py-autoreload option will scan your whole module tree at every check cycle. * ``wsgi.file_wrapper`` is an optimization of the WSGI standard. In some corner case it can raise an error. - For example when returning an in-memory bytes buffer (`io.Bytesio `_) in Python 3.5. + For example when returning an in-memory bytes buffer (`io.BytesIO `_) in Python 3.5. See this `issue `_. You can disable it by setting the option ``wsgi-disable-file-wrapper`` to ``true``.