|
7 | 7 | msgstr "" |
8 | 8 | "Project-Id-Version: Python 3.12\n" |
9 | 9 | "Report-Msgid-Bugs-To: \n" |
10 | | -"POT-Creation-Date: 2022-12-17 01:28+0300\n" |
| 10 | +"POT-Creation-Date: 2023-10-05 21:24+0000\n" |
11 | 11 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
12 | 12 | "Last-Translator: \n" |
13 | 13 | "Language-Team: TURKISH <python.docs.tr@gmail.com>\n" |
@@ -927,101 +927,107 @@ msgstr "" |
927 | 927 | msgid "Called when the child process has exited." |
928 | 928 | msgstr "" |
929 | 929 |
|
930 | | -#: library/asyncio-protocol.rst:713 |
| 930 | +#: library/asyncio-protocol.rst:711 |
| 931 | +msgid "" |
| 932 | +"It can be called before :meth:`~SubprocessProtocol.pipe_data_received` and :" |
| 933 | +"meth:`~SubprocessProtocol.pipe_connection_lost` methods." |
| 934 | +msgstr "" |
| 935 | + |
| 936 | +#: library/asyncio-protocol.rst:716 |
931 | 937 | msgid "Examples" |
932 | 938 | msgstr "" |
933 | 939 |
|
934 | | -#: library/asyncio-protocol.rst:718 |
| 940 | +#: library/asyncio-protocol.rst:721 |
935 | 941 | msgid "TCP Echo Server" |
936 | 942 | msgstr "" |
937 | 943 |
|
938 | | -#: library/asyncio-protocol.rst:720 |
| 944 | +#: library/asyncio-protocol.rst:723 |
939 | 945 | msgid "" |
940 | 946 | "Create a TCP echo server using the :meth:`loop.create_server` method, send " |
941 | 947 | "back received data, and close the connection::" |
942 | 948 | msgstr "" |
943 | 949 |
|
944 | | -#: library/asyncio-protocol.rst:761 |
| 950 | +#: library/asyncio-protocol.rst:764 |
945 | 951 | msgid "" |
946 | 952 | "The :ref:`TCP echo server using streams <asyncio-tcp-echo-server-streams>` " |
947 | 953 | "example uses the high-level :func:`asyncio.start_server` function." |
948 | 954 | msgstr "" |
949 | 955 |
|
950 | | -#: library/asyncio-protocol.rst:767 |
| 956 | +#: library/asyncio-protocol.rst:770 |
951 | 957 | msgid "TCP Echo Client" |
952 | 958 | msgstr "" |
953 | 959 |
|
954 | | -#: library/asyncio-protocol.rst:769 |
| 960 | +#: library/asyncio-protocol.rst:772 |
955 | 961 | msgid "" |
956 | 962 | "A TCP echo client using the :meth:`loop.create_connection` method, sends " |
957 | 963 | "data, and waits until the connection is closed::" |
958 | 964 | msgstr "" |
959 | 965 |
|
960 | | -#: library/asyncio-protocol.rst:817 |
| 966 | +#: library/asyncio-protocol.rst:820 |
961 | 967 | msgid "" |
962 | 968 | "The :ref:`TCP echo client using streams <asyncio-tcp-echo-client-streams>` " |
963 | 969 | "example uses the high-level :func:`asyncio.open_connection` function." |
964 | 970 | msgstr "" |
965 | 971 |
|
966 | | -#: library/asyncio-protocol.rst:824 |
| 972 | +#: library/asyncio-protocol.rst:827 |
967 | 973 | msgid "UDP Echo Server" |
968 | 974 | msgstr "" |
969 | 975 |
|
970 | | -#: library/asyncio-protocol.rst:826 |
| 976 | +#: library/asyncio-protocol.rst:829 |
971 | 977 | msgid "" |
972 | 978 | "A UDP echo server, using the :meth:`loop.create_datagram_endpoint` method, " |
973 | 979 | "sends back received data::" |
974 | 980 | msgstr "" |
975 | 981 |
|
976 | | -#: library/asyncio-protocol.rst:868 |
| 982 | +#: library/asyncio-protocol.rst:871 |
977 | 983 | msgid "UDP Echo Client" |
978 | 984 | msgstr "" |
979 | 985 |
|
980 | | -#: library/asyncio-protocol.rst:870 |
| 986 | +#: library/asyncio-protocol.rst:873 |
981 | 987 | msgid "" |
982 | 988 | "A UDP echo client, using the :meth:`loop.create_datagram_endpoint` method, " |
983 | 989 | "sends data and closes the transport when it receives the answer::" |
984 | 990 | msgstr "" |
985 | 991 |
|
986 | | -#: library/asyncio-protocol.rst:925 |
| 992 | +#: library/asyncio-protocol.rst:928 |
987 | 993 | msgid "Connecting Existing Sockets" |
988 | 994 | msgstr "" |
989 | 995 |
|
990 | | -#: library/asyncio-protocol.rst:927 |
| 996 | +#: library/asyncio-protocol.rst:930 |
991 | 997 | msgid "" |
992 | 998 | "Wait until a socket receives data using the :meth:`loop.create_connection` " |
993 | 999 | "method with a protocol::" |
994 | 1000 | msgstr "" |
995 | 1001 |
|
996 | | -#: library/asyncio-protocol.rst:981 |
| 1002 | +#: library/asyncio-protocol.rst:984 |
997 | 1003 | msgid "" |
998 | 1004 | "The :ref:`watch a file descriptor for read events " |
999 | 1005 | "<asyncio_example_watch_fd>` example uses the low-level :meth:`loop." |
1000 | 1006 | "add_reader` method to register an FD." |
1001 | 1007 | msgstr "" |
1002 | 1008 |
|
1003 | | -#: library/asyncio-protocol.rst:985 |
| 1009 | +#: library/asyncio-protocol.rst:988 |
1004 | 1010 | msgid "" |
1005 | 1011 | "The :ref:`register an open socket to wait for data using streams " |
1006 | 1012 | "<asyncio_example_create_connection-streams>` example uses high-level streams " |
1007 | 1013 | "created by the :func:`open_connection` function in a coroutine." |
1008 | 1014 | msgstr "" |
1009 | 1015 |
|
1010 | | -#: library/asyncio-protocol.rst:992 |
| 1016 | +#: library/asyncio-protocol.rst:995 |
1011 | 1017 | msgid "loop.subprocess_exec() and SubprocessProtocol" |
1012 | 1018 | msgstr "" |
1013 | 1019 |
|
1014 | | -#: library/asyncio-protocol.rst:994 |
| 1020 | +#: library/asyncio-protocol.rst:997 |
1015 | 1021 | msgid "" |
1016 | 1022 | "An example of a subprocess protocol used to get the output of a subprocess " |
1017 | 1023 | "and to wait for the subprocess exit." |
1018 | 1024 | msgstr "" |
1019 | 1025 |
|
1020 | | -#: library/asyncio-protocol.rst:997 |
| 1026 | +#: library/asyncio-protocol.rst:1000 |
1021 | 1027 | msgid "The subprocess is created by the :meth:`loop.subprocess_exec` method::" |
1022 | 1028 | msgstr "" |
1023 | 1029 |
|
1024 | | -#: library/asyncio-protocol.rst:1043 |
| 1030 | +#: library/asyncio-protocol.rst:1060 |
1025 | 1031 | msgid "" |
1026 | 1032 | "See also the :ref:`same example <asyncio_example_create_subprocess_exec>` " |
1027 | 1033 | "written using high-level APIs." |
|
0 commit comments