File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ It is important to use correct ``enctype``, depending on the type of data you wa
196
196
- ``application/x-www-form-urlencoded `` - For sending simple text data without any special characters including spaces.
197
197
If you use it, values will be automatically parsed as strings, but special characters will be URL encoded
198
198
e.g. ``"Hello World! ^-$%" `` will be saved as ``"Hello+World%21+%5E-%24%25" ``
199
- - ``multipart/form-data `` - For sending textwith special characters and files
199
+ - ``multipart/form-data `` - For sending text with special characters and files
200
200
When used, non-file values will be automatically parsed as strings and non plain text files will be saved as ``bytes ``.
201
201
e.g. ``"Hello World! ^-$%" `` will be saved as ``'Hello World! ^-$%' ``, and e.g. a PNG file will be saved as ``b'\x89PNG\r\n\x1a\n\x00\... ``.
202
202
- ``text/plain `` - For sending text data with special characters.
@@ -325,7 +325,7 @@ response object somewhere, so that it can be accessed later.
325
325
326
326
.. warning ::
327
327
Because of the limited number of concurrently open sockets, it is **not possible to process more than one SSE response at the same time **.
328
- This might change in the future, but for now, it is recommended to use SSE **only with one client at a time. **.
328
+ This might change in the future, but for now, it is recommended to use SSE **only with one client at a time **.
329
329
330
330
.. literalinclude :: ../examples/httpserver_sse.py
331
331
:caption: examples/httpserver_sse.py
You can’t perform that action at this time.
0 commit comments