@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version :Python 3.13\n "
1313"Report-Msgid-Bugs-To :\n "
14- "POT-Creation-Date :2025-09 -15 15:19 +0000\n "
14+ "POT-Creation-Date :2025-10 -15 15:08 +0000\n "
1515"PO-Revision-Date :2025-09-15 01:04+0000\n "
1616"Last-Translator :python-doc bot, 2025\n "
1717"Language-Team :Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
@@ -83,8 +83,8 @@ msgstr ""
8383"Subclasse de :class:`enum.IntEnum` que define um conjunto de códigos de "
8484"status HTTP, frases de razão e descrições longas escritas em inglês."
8585
86- #: ../../library/http.rst:34 ../../library/http.rst:161
87- #: ../../library/http.rst:175
86+ #: ../../library/http.rst:34 ../../library/http.rst:162
87+ #: ../../library/http.rst:176
8888msgid "Usage::"
8989msgstr "Uso::"
9090
@@ -120,12 +120,12 @@ msgstr ""
120120msgid "Code"
121121msgstr "Código"
122122
123- #: ../../library/http.rst:60 ../../library/http.rst:208
123+ #: ../../library/http.rst:60 ../../library/http.rst:209
124124msgid "Enum Name"
125125msgstr "Nome da Enumeração"
126126
127- #: ../../library/http.rst:60 ../../library/http.rst:152
128- #: ../../library/http.rst:208
127+ #: ../../library/http.rst:60 ../../library/http.rst:153
128+ #: ../../library/http.rst:209
129129msgid "Details"
130130msgstr "Detalhes"
131131
@@ -901,78 +901,77 @@ msgstr ""
901901#: ../../library/http.rst:140
902902msgid ""
903903"Implemented RFC9110 naming for status constants. Old constant names are "
904- "preserved for backwards compatibility."
904+ "preserved for backwards compatibility: ``413 REQUEST_ENTITY_TOO_LARGE``, "
905+ "``414 REQUEST_URI_TOO_LONG``, ``416 REQUESTED_RANGE_NOT_SATISFIABLE`` and "
906+ "``422 UNPROCESSABLE_ENTITY``."
905907msgstr ""
906- "Foi implementada a RFC9110 referente a nomeação de constantes de status. "
907- "Nomes antigos de constantes foram preservados para manter a "
908- "retrocompatibilidade."
909908
910- #: ../../library/http.rst:145
909+ #: ../../library/http.rst:146
911910msgid "HTTP status category"
912911msgstr "Categorias de HTTP status"
913912
914- #: ../../library/http.rst:149
913+ #: ../../library/http.rst:150
915914msgid ""
916915"The enum values have several properties to indicate the HTTP status category:"
917916msgstr ""
918917"Os valores enum possuem várias propriedades que indicam a categoria do "
919918"status HTTP."
920919
921- #: ../../library/http.rst:152
920+ #: ../../library/http.rst:153
922921msgid "Property"
923922msgstr "Propriedade"
924923
925- #: ../../library/http.rst:152
924+ #: ../../library/http.rst:153
926925msgid "Indicates that"
927926msgstr "Indica que"
928927
929- #: ../../library/http.rst:154
928+ #: ../../library/http.rst:155
930929msgid "``is_informational``"
931930msgstr "``is_informational``"
932931
933- #: ../../library/http.rst:154
932+ #: ../../library/http.rst:155
934933msgid "``100 <= status <= 199``"
935934msgstr "``100 <= status <= 199``"
936935
937- #: ../../library/http.rst:154 ../../library/http.rst:155
938- #: ../../library/http.rst:156 ../../library/http.rst:157
939- #: ../../library/http.rst:158
936+ #: ../../library/http.rst:155 ../../library/http.rst:156
937+ #: ../../library/http.rst:157 ../../library/http.rst:158
938+ #: ../../library/http.rst:159
940939msgid "HTTP Semantics :rfc:`9110`, Section 15"
941940msgstr ""
942941
943- #: ../../library/http.rst:155
942+ #: ../../library/http.rst:156
944943msgid "``is_success``"
945944msgstr "``is_success``"
946945
947- #: ../../library/http.rst:155
946+ #: ../../library/http.rst:156
948947msgid "``200 <= status <= 299``"
949948msgstr "``200 <= status <= 299``"
950949
951- #: ../../library/http.rst:156
950+ #: ../../library/http.rst:157
952951msgid "``is_redirection``"
953952msgstr "``is_redirection``"
954953
955- #: ../../library/http.rst:156
954+ #: ../../library/http.rst:157
956955msgid "``300 <= status <= 399``"
957956msgstr "``300 <= status <= 399``"
958957
959- #: ../../library/http.rst:157
958+ #: ../../library/http.rst:158
960959msgid "``is_client_error``"
961960msgstr "``is_client_error``"
962961
963- #: ../../library/http.rst:157
962+ #: ../../library/http.rst:158
964963msgid "``400 <= status <= 499``"
965964msgstr "``400 <= status <= 499``"
966965
967- #: ../../library/http.rst:158
966+ #: ../../library/http.rst:159
968967msgid "``is_server_error``"
969968msgstr "``is_server_error``"
970969
971- #: ../../library/http.rst:158
970+ #: ../../library/http.rst:159
972971msgid "``500 <= status <= 599``"
973972msgstr "``500 <= status <= 599``"
974973
975- #: ../../library/http.rst:163
974+ #: ../../library/http.rst:164
976975msgid ""
977976">>> from http import HTTPStatus\n"
978977">>> HTTPStatus.OK.is_success\n"
@@ -981,13 +980,13 @@ msgid ""
981980"False"
982981msgstr ""
983982
984- #: ../../library/http.rst:173
983+ #: ../../library/http.rst:174
985984msgid ""
986985"A subclass of :class:`enum.StrEnum` that defines a set of HTTP methods and "
987986"descriptions written in English."
988987msgstr ""
989988
990- #: ../../library/http.rst:177
989+ #: ../../library/http.rst:178
991990msgid ""
992991">>> from http import HTTPMethod\n"
993992">>>\n"
@@ -1011,89 +1010,89 @@ msgid ""
10111010" <HTTPMethod.TRACE>]"
10121011msgstr ""
10131012
1014- #: ../../library/http.rst:201
1013+ #: ../../library/http.rst:202
10151014msgid "HTTP methods"
10161015msgstr "Métodos HTTP"
10171016
1018- #: ../../library/http.rst:203
1017+ #: ../../library/http.rst:204
10191018msgid ""
10201019"Supported, `IANA-registered methods <https://www.iana.org/assignments/http-"
10211020"methods/http-methods.xhtml>`_ available in :class:`http.HTTPMethod` are:"
10221021msgstr ""
10231022
1024- #: ../../library/http.rst:208
1023+ #: ../../library/http.rst:209
10251024msgid "Method"
10261025msgstr "Método"
10271026
1028- #: ../../library/http.rst:210
1027+ #: ../../library/http.rst:211
10291028msgid "``GET``"
10301029msgstr "``GET``"
10311030
1032- #: ../../library/http.rst:210
1031+ #: ../../library/http.rst:211
10331032msgid "HTTP Semantics :rfc:`9110`, Section 9.3.1"
10341033msgstr ""
10351034
1036- #: ../../library/http.rst:211
1035+ #: ../../library/http.rst:212
10371036msgid "``HEAD``"
10381037msgstr "``HEAD``"
10391038
1040- #: ../../library/http.rst:211
1039+ #: ../../library/http.rst:212
10411040msgid "HTTP Semantics :rfc:`9110`, Section 9.3.2"
10421041msgstr ""
10431042
1044- #: ../../library/http.rst:212
1043+ #: ../../library/http.rst:213
10451044msgid "``POST``"
10461045msgstr "``POST``"
10471046
1048- #: ../../library/http.rst:212
1047+ #: ../../library/http.rst:213
10491048msgid "HTTP Semantics :rfc:`9110`, Section 9.3.3"
10501049msgstr ""
10511050
1052- #: ../../library/http.rst:213
1051+ #: ../../library/http.rst:214
10531052msgid "``PUT``"
10541053msgstr "``PUT``"
10551054
1056- #: ../../library/http.rst:213
1055+ #: ../../library/http.rst:214
10571056msgid "HTTP Semantics :rfc:`9110`, Section 9.3.4"
10581057msgstr ""
10591058
1060- #: ../../library/http.rst:214
1059+ #: ../../library/http.rst:215
10611060msgid "``DELETE``"
10621061msgstr "``DELETE``"
10631062
1064- #: ../../library/http.rst:214
1063+ #: ../../library/http.rst:215
10651064msgid "HTTP Semantics :rfc:`9110`, Section 9.3.5"
10661065msgstr ""
10671066
1068- #: ../../library/http.rst:215
1067+ #: ../../library/http.rst:216
10691068msgid "``CONNECT``"
10701069msgstr "``CONNECT``"
10711070
1072- #: ../../library/http.rst:215
1071+ #: ../../library/http.rst:216
10731072msgid "HTTP Semantics :rfc:`9110`, Section 9.3.6"
10741073msgstr ""
10751074
1076- #: ../../library/http.rst:216
1075+ #: ../../library/http.rst:217
10771076msgid "``OPTIONS``"
10781077msgstr "``OPTIONS``"
10791078
1080- #: ../../library/http.rst:216
1079+ #: ../../library/http.rst:217
10811080msgid "HTTP Semantics :rfc:`9110`, Section 9.3.7"
10821081msgstr ""
10831082
1084- #: ../../library/http.rst:217
1083+ #: ../../library/http.rst:218
10851084msgid "``TRACE``"
10861085msgstr "``TRACE``"
10871086
1088- #: ../../library/http.rst:217
1087+ #: ../../library/http.rst:218
10891088msgid "HTTP Semantics :rfc:`9110`, Section 9.3.8"
10901089msgstr ""
10911090
1092- #: ../../library/http.rst:218
1091+ #: ../../library/http.rst:219
10931092msgid "``PATCH``"
10941093msgstr "``PATCH``"
10951094
1096- #: ../../library/http.rst:218
1095+ #: ../../library/http.rst:219
10971096msgid "HTTP/1.1 :rfc:`5789`"
10981097msgstr ""
10991098