@@ -41,9 +41,8 @@ msgid ":func:`asyncio.get_event_loop`"
41
41
msgstr ":func:`asyncio.get_event_loop`"
42
42
43
43
#: ../../library/asyncio-llapi-index.rst:22
44
- #, fuzzy
45
44
msgid "Get an event loop instance (running or current via the current policy)."
46
- msgstr "이벤트 루프 인스턴스를 가져옵니다 (현재 또는 정책을 통해)."
45
+ msgstr "이벤트 루프 인스턴스를 가져옵니다 (실행 중이거나 현재 정책을 통해 현재 )."
47
46
48
47
#: ../../library/asyncio-llapi-index.rst:24
49
48
msgid ":func:`asyncio.set_event_loop`"
@@ -75,11 +74,10 @@ msgid "Event Loop Methods"
75
74
msgstr "이벤트 루프 메서드"
76
75
77
76
#: ../../library/asyncio-llapi-index.rst:39
78
- #, fuzzy
79
77
msgid ""
80
78
"See also the main documentation section about the :ref:`asyncio-event-"
81
79
"loop-methods`."
82
- msgstr ":ref:`이벤트 루프 메서드 < asyncio-event-loop> `\\ 에 관한 주 설명서 절도 참조하십시오."
80
+ msgstr ":ref:`asyncio-event-loop-methods `\\ 에 관한 주 설명서 절도 참조하십시오."
83
81
84
82
#: ../../library/asyncio-llapi-index.rst:42
85
83
msgid "Lifecycle"
@@ -118,18 +116,16 @@ msgid "Close the event loop."
118
116
msgstr "이벤트 루프를 닫습니다."
119
117
120
118
#: ../../library/asyncio-llapi-index.rst:59
121
- #, fuzzy
122
119
msgid ":meth:`loop.is_running`"
123
- msgstr ":meth:`loop.is_running() `"
120
+ msgstr ":meth:`loop.is_running`"
124
121
125
122
#: ../../library/asyncio-llapi-index.rst:60
126
123
msgid "Return ``True`` if the event loop is running."
127
124
msgstr "이벤트 루프가 실행 중이면 ``True``\\ 를 반환합니다."
128
125
129
126
#: ../../library/asyncio-llapi-index.rst:62
130
- #, fuzzy
131
127
msgid ":meth:`loop.is_closed`"
132
- msgstr ":meth:`loop.is_closed() `"
128
+ msgstr ":meth:`loop.is_closed`"
133
129
134
130
#: ../../library/asyncio-llapi-index.rst:63
135
131
msgid "Return ``True`` if the event loop is closed."
@@ -386,24 +382,20 @@ msgid "Receive data from the :class:`~socket.socket` into a buffer."
386
382
msgstr ":class:`~socket.socket`\\ 에서 데이터를 버퍼로 수신합니다."
387
383
388
384
#: ../../library/asyncio-llapi-index.rst:192
389
- #, fuzzy
390
385
msgid "``await`` :meth:`loop.sock_recvfrom`"
391
- msgstr "``await`` :meth:`loop.sock_recv `"
386
+ msgstr "``await`` :meth:`loop.sock_recvfrom `"
392
387
393
388
#: ../../library/asyncio-llapi-index.rst:193
394
- #, fuzzy
395
389
msgid "Receive a datagram from the :class:`~socket.socket`."
396
- msgstr ":class:`~socket.socket`\\ 에서 데이터를 수신합니다."
390
+ msgstr ":class:`~socket.socket`\\ 에서 데이터 그램을 수신합니다."
397
391
398
392
#: ../../library/asyncio-llapi-index.rst:195
399
- #, fuzzy
400
393
msgid "``await`` :meth:`loop.sock_recvfrom_into`"
401
- msgstr "``await`` :meth:`loop.sock_recv_into `"
394
+ msgstr "``await`` :meth:`loop.sock_recvfrom_into `"
402
395
403
396
#: ../../library/asyncio-llapi-index.rst:196
404
- #, fuzzy
405
397
msgid "Receive a datagram from the :class:`~socket.socket` into a buffer."
406
- msgstr ":class:`~socket.socket`\\ 에서 데이터를 버퍼로 수신합니다."
398
+ msgstr ":class:`~socket.socket`\\ 에서 데이터 그램을 버퍼로 수신합니다."
407
399
408
400
#: ../../library/asyncio-llapi-index.rst:198
409
401
msgid "``await`` :meth:`loop.sock_sendall`"
@@ -414,14 +406,12 @@ msgid "Send data to the :class:`~socket.socket`."
414
406
msgstr "데이터를 :class:`~socket.socket`\\ 으로 보냅니다."
415
407
416
408
#: ../../library/asyncio-llapi-index.rst:201
417
- #, fuzzy
418
409
msgid "``await`` :meth:`loop.sock_sendto`"
419
- msgstr "``await`` :meth:`loop.sock_sendall `"
410
+ msgstr "``await`` :meth:`loop.sock_sendto `"
420
411
421
412
#: ../../library/asyncio-llapi-index.rst:202
422
- #, fuzzy
423
413
msgid "Send a datagram via the :class:`~socket.socket` to the given address."
424
- msgstr "데이터를 :class:`~socket.socket`\\ 으로 보냅니다."
414
+ msgstr "데이터 그램을 :class:`~socket.socket`\\ 을 통해 주어진 주소로 보냅니다."
425
415
426
416
#: ../../library/asyncio-llapi-index.rst:204
427
417
msgid "``await`` :meth:`loop.sock_connect`"
@@ -556,12 +546,11 @@ msgid "The default exception handler implementation."
556
546
msgstr "기본 예외 처리기 구현."
557
547
558
548
#: ../../library/asyncio-llapi-index.rst:270
559
- #, fuzzy
560
549
msgid ""
561
550
":ref:`Using asyncio.new_event_loop() and loop.run_forever() "
562
551
"<asyncio_example_lowlevel_helloworld>`."
563
552
msgstr ""
564
- ":ref:`asyncio.get_event_loop () 와 loop.run_forever() 사용하기 "
553
+ ":ref:`asyncio.new_event_loop () 와 loop.run_forever() 사용하기 "
565
554
"<asyncio_example_lowlevel_helloworld>`."
566
555
567
556
#: ../../library/asyncio-llapi-index.rst:273
@@ -749,18 +738,16 @@ msgstr ""
749
738
"<WriteTransport.get_write_buffer_size>`"
750
739
751
740
#: ../../library/asyncio-llapi-index.rst:361
752
- #, fuzzy
753
741
msgid "Return the current size of the output buffer."
754
- msgstr "현재 프로토콜을 돌려줍니다."
742
+ msgstr "출력 버퍼의 현재 크기를 돌려줍니다."
755
743
756
744
#: ../../library/asyncio-llapi-index.rst:363
757
- #, fuzzy
758
745
msgid ""
759
746
":meth:`transport.get_write_buffer_limits() "
760
747
"<WriteTransport.get_write_buffer_limits>`"
761
748
msgstr ""
762
- ":meth:`transport.set_write_buffer_limits () "
763
- "<WriteTransport.set_write_buffer_limits >`"
749
+ ":meth:`transport.get_write_buffer_limits () "
750
+ "<WriteTransport.get_write_buffer_limits >`"
764
751
765
752
#: ../../library/asyncio-llapi-index.rst:365
766
753
msgid "Return high and low water marks for write flow control."
@@ -988,11 +975,8 @@ msgid "Subprocess Protocols"
988
975
msgstr "서브 프로세스 프로토콜"
989
976
990
977
#: ../../library/asyncio-llapi-index.rst:487
991
- #, fuzzy
992
978
msgid "``callback`` :meth:`~SubprocessProtocol.pipe_data_received`"
993
- msgstr ""
994
- "``callback`` :meth:`pipe_data_received() "
995
- "<SubprocessProtocol.pipe_data_received>`"
979
+ msgstr "``callback`` :meth:`~SubprocessProtocol.pipe_data_received`"
996
980
997
981
#: ../../library/asyncio-llapi-index.rst:488
998
982
msgid ""
@@ -1001,11 +985,8 @@ msgid ""
1001
985
msgstr "자식 프로세스가 *stdout* 이나 *stderr* 파이프에 데이터를 쓸 때 호출됩니다."
1002
986
1003
987
#: ../../library/asyncio-llapi-index.rst:491
1004
- #, fuzzy
1005
988
msgid "``callback`` :meth:`~SubprocessProtocol.pipe_connection_lost`"
1006
- msgstr ""
1007
- "``callback`` :meth:`pipe_connection_lost() "
1008
- "<SubprocessProtocol.pipe_connection_lost>`"
989
+ msgstr "``callback`` :meth:`~SubprocessProtocol.pipe_connection_lost`"
1009
990
1010
991
#: ../../library/asyncio-llapi-index.rst:492
1011
992
msgid ""
@@ -1023,6 +1004,8 @@ msgid ""
1023
1004
":meth:`~SubprocessProtocol.pipe_data_received` and "
1024
1005
":meth:`~SubprocessProtocol.pipe_connection_lost` methods."
1025
1006
msgstr ""
1007
+ "자식 프로세스가 종료할 때 호출됩니다. :meth:`~SubprocessProtocol.pipe_data_received` 와 "
1008
+ ":meth:`~SubprocessProtocol.pipe_connection_lost` 메서드 전에 호출될 수 있습니다."
1026
1009
1027
1010
#: ../../library/asyncio-llapi-index.rst:503
1028
1011
msgid "Event Loop Policies"
@@ -1065,6 +1048,3 @@ msgstr ":class:`AbstractEventLoopPolicy`"
1065
1048
msgid "Base class for policy objects."
1066
1049
msgstr "정책 객체의 베이스 클래스."
1067
1050
1068
- #~ msgid "Called when the child process has exited."
1069
- #~ msgstr "자식 프로세스가 종료할 때 호출됩니다."
1070
-
0 commit comments