33# This file is distributed under the same license as the Python package.
44# FIRST AUTHOR <EMAIL@ADDRESS>, 2017.
55#
6- #, fuzzy
76msgid ""
87msgstr ""
98"Project-Id-Version : Python 3.6\n "
109"Report-Msgid-Bugs-To : \n "
1110"POT-Creation-Date : 2017-11-26 18:49+0900\n "
1211"PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
13- "Last-Translator : FULL NAME <EMAIL@ADDRESS >\n "
14- "Language-Team : LANGUAGE <LL@li.org> \n "
12+ "Last-Translator : Dong-gweon Oh <flowdas@gmail.com >\n "
13+ "Language-Team : Korean (https://python.flowdas.com) \n "
1514"MIME-Version : 1.0\n "
1615"Content-Type : text/plain; charset=utf-8\n "
1716"Content-Transfer-Encoding : 8bit\n "
1817"Generated-By : Babel 2.5.1\n "
1918
2019#: ../Doc/library/copyreg.rst:2
2120msgid ":mod:`copyreg` --- Register :mod:`pickle` support functions"
22- msgstr ""
21+ msgstr ":mod:`copyreg` --- :mod:`pickle` 지원 함수 등록 "
2322
2423#: ../Doc/library/copyreg.rst:7
2524msgid "**Source code:** :source:`Lib/copyreg.py`"
26- msgstr ""
25+ msgstr "**소스 코드:** :source:`Lib/copyreg.py` "
2726
2827#: ../Doc/library/copyreg.rst:15
2928msgid ""
@@ -34,19 +33,26 @@ msgid ""
3433"not classes. Such constructors may be factory functions or class "
3534"instances."
3635msgstr ""
36+ ":mod:`copyreg` 모듈은 특정 객체를 피클 하는 동안 사용되는 함수를 정의하는 방법을 제공합니다. :mod:`pickle`\\ 과"
37+ " :mod:`copy` 모듈은 해당 객체를 피클/복사할 때 이 함수를 사용합니다. 이 모듈은 클래스가 아닌 객체 생성자에 대한 구성 "
38+ "정보를 제공합니다. 이러한 생성자는 팩토리 함수나 클래스 인스턴스일 수 있습니다."
3739
3840#: ../Doc/library/copyreg.rst:24
3941msgid ""
4042"Declares *object* to be a valid constructor. If *object* is not callable"
4143" (and hence not valid as a constructor), raises :exc:`TypeError`."
4244msgstr ""
45+ "*object*\\ 를 유효한 생성자로 선언합니다. *object*\\ 가 콜러블이 아니면 (따라서 생성자로 유효하지 않으면), "
46+ ":exc:`TypeError`\\ 가 발생합니다."
4347
4448#: ../Doc/library/copyreg.rst:30
4549msgid ""
4650"Declares that *function* should be used as a \" reduction\" function for "
4751"objects of type *type*. *function* should return either a string or a "
4852"tuple containing two or three elements."
4953msgstr ""
54+ "*function*\\ 이 *type* 형의 객체에 대한 \" 환원\" 함수로 사용되어야 한다고 선언합니다. *function*\\ 는 "
55+ "문자열이나 두 개 또는 세 개의 요소를 포함하는 튜플을 반환해야 합니다."
5056
5157#: ../Doc/library/copyreg.rst:34
5258msgid ""
@@ -55,6 +61,9 @@ msgid ""
5561" arguments returned by *function* at pickling time. :exc:`TypeError` "
5662"will be raised if *object* is a class or *constructor* is not callable."
5763msgstr ""
64+ "선택적 *constructor* 매개 변수가 제공되면, 콜러블 객체이며, 피클 할 때 *function*\\ 에 의해 반환된 인자의 튜플로"
65+ " 호출될 때 객체를 재구성하는 데 사용할 수 있습니다. *object*\\ 가 클래스이거나 *constructor*\\ 가 콜러블이 아니면 "
66+ ":exc:`TypeError`\\ 가 발생합니다."
5867
5968#: ../Doc/library/copyreg.rst:39
6069msgid ""
@@ -64,14 +73,16 @@ msgid ""
6473"subclass of :class:`pickle.Pickler` can also be used for declaring "
6574"reduction functions."
6675msgstr ""
76+ "*function* 과 *constructor*\\ 에서 기대되는 인터페이스에 대한 자세한 내용은 :mod:`pickle` 모듈을 "
77+ "참조하십시오. 피클러 객체나 :class:`pickle.Pickler`\\ 의 서브 클래스의 "
78+ ":attr:`~pickle.Pickler.dispatch_table` 어트리뷰트도 환원 함수를 선언하는 데 사용될 수 있습니다."
6779
6880#: ../Doc/library/copyreg.rst:46
6981msgid "Example"
70- msgstr ""
82+ msgstr "예제 "
7183
7284#: ../Doc/library/copyreg.rst:48
7385msgid ""
7486"The example below would like to show how to register a pickle function "
7587"and how it will be used:"
76- msgstr ""
77-
88+ msgstr "아래 예제는 피클 함수를 등록하는 방법과 사용법을 보여줍니다.:"
0 commit comments