-
-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathdummy_threading.po
More file actions
52 lines (46 loc) · 2.12 KB
/
Copy pathdummy_threading.po
File metadata and controls
52 lines (46 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2017, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2017.
#
msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-05-30 09:56+0900\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Dong-gweon Oh <[email protected]>\n"
"Language-Team: Korean (https://python.flowdas.com)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.7.0\n"
#: ../Doc/library/dummy_threading.rst:2
msgid ""
":mod:`dummy_threading` --- Drop-in replacement for the :mod:`threading` "
"module"
msgstr ":mod:`dummy_threading` --- :mod:`threading` 모듈의 드롭인 교체"
#: ../Doc/library/dummy_threading.rst:7
msgid "**Source code:** :source:`Lib/dummy_threading.py`"
msgstr "**소스 코드:** :source:`Lib/dummy_threading.py`"
#: ../Doc/library/dummy_threading.rst:9
msgid ""
"Python now always has threading enabled. Please use :mod:`threading` "
"instead."
msgstr "파이썬은 이제 항상 스레딩을 활성화했습니다. 대신 :mod:`threading`\\을 사용하십시오."
#: ../Doc/library/dummy_threading.rst:14
msgid ""
"This module provides a duplicate interface to the :mod:`threading` "
"module. It was meant to be imported when the :mod:`_thread` module was "
"not provided on a platform."
msgstr ""
"이 모듈은 :mod:`threading` 모듈에 대한 중복 인터페이스를 제공합니다. :mod:`_thread` 모듈이 플랫폼에서 "
"제공되지 않았을 때 임포트 하기 위한 것입니다."
#: ../Doc/library/dummy_threading.rst:18
msgid ""
"Be careful to not use this module where deadlock might occur from a "
"thread being created that blocks waiting for another thread to be "
"created. This often occurs with blocking I/O."
msgstr ""
"스레드가 만들어지면서 다른 스레드가 만들어질 때까지 대기함으로 인한 교착 상태가 일어날 수 있는 곳에서 이 모듈을 사용하지 "
"마십시오. 이것은 종종 블로킹 I/O에서 발생합니다."