@@ -17,26 +17,23 @@ msgstr ""
1717"Generated-By : Babel 2.17.0\n "
1818
1919#: ../../library/rlcompleter.rst:2
20- #, fuzzy
2120msgid ":mod:`!rlcompleter` --- Completion function for GNU readline"
22- msgstr ":mod:`rlcompleter` --- GNU readline을 위한 완성 함수"
21+ msgstr ":mod:`! rlcompleter` --- GNU readline을 위한 완성 함수"
2322
2423#: ../../library/rlcompleter.rst:9
2524msgid "**Source code:** :source:`Lib/rlcompleter.py`"
2625msgstr "**소스 코드:** :source:`Lib/rlcompleter.py`"
2726
2827#: ../../library/rlcompleter.rst:13
29- #, fuzzy
3028msgid ""
3129"The :mod:`!rlcompleter` module defines a completion function suitable to "
3230"be passed to :func:`~readline.set_completer` in the :mod:`readline` "
3331"module."
3432msgstr ""
35- ":mod:`rlcompleter` 모듈은 유효한 파이썬 식별자와 키워드를 완성함으로써 :mod:`readline` 모듈에 적합한 "
36- "완성 함수를 정의합니다."
33+ ":mod:`! rlcompleter` 모듈은 :mod:`readline` 모듈의 "
34+ ":func:`~readline.set_completer` \\ 로 전달하기에 적합한 완성 함수를 정의합니다."
3735
3836#: ../../library/rlcompleter.rst:16
39- #, fuzzy
4037msgid ""
4138"When this module is imported on a Unix platform with the :mod:`readline` "
4239"module available, an instance of the :class:`Completer` class is "
@@ -46,8 +43,9 @@ msgid ""
4643"<identifiers>`."
4744msgstr ""
4845":mod:`readline` 모듈을 사용할 수 있는 유닉스 플랫폼에서 이 모듈이 임포트될 때, :class:`Completer` "
49- "클래스의 인스턴스가 자동으로 만들어지고, :meth:`complete` 메서드가 :mod:`readline` "
50- "완성기(completer)로 설정됩니다."
46+ "클래스의 인스턴스가 자동으로 만들어지고, :meth:`~Completer.complete` 메서드가 :ref:`readline "
47+ "완성기 <readline-completion>`\\ 로 설정됩니다. 이 메서드는 유효한 파이썬 :ref:`식별자외 키워드 "
48+ "<identifiers>`\\ 의 완성을 제공합니다."
5149
5250#: ../../library/rlcompleter.rst:22
5351msgid "Example::"
@@ -66,16 +64,25 @@ msgid ""
6664"readline.__name__ readline.parse_and_bind(\n"
6765">>> readline."
6866msgstr ""
67+ ">>> import rlcompleter\n"
68+ ">>> import readline\n"
69+ ">>> readline.parse_and_bind(\" tab: complete\" )\n"
70+ ">>> readline. <TAB PRESSED>\n"
71+ "readline.__doc__ readline.get_line_buffer( "
72+ "readline.read_init_file(\n"
73+ "readline.__file__ readline.insert_text( "
74+ "readline.set_completer(\n"
75+ "readline.__name__ readline.parse_and_bind(\n"
76+ ">>> readline."
6977
7078#: ../../library/rlcompleter.rst:33
71- #, fuzzy
7279msgid ""
7380"The :mod:`!rlcompleter` module is designed for use with Python's "
7481":ref:`interactive mode <tut-interactive>`. Unless Python is run with the"
7582" :option:`-S` option, the module is automatically imported and configured"
7683" (see :ref:`rlcompleter-config`)."
7784msgstr ""
78- ":mod:`rlcompleter` 모듈은 파이썬의 :ref:`대화형 모드 <tut-interactive>`\\ 와 함께 사용하도록 "
85+ ":mod:`! rlcompleter` 모듈은 파이썬의 :ref:`대화형 모드 <tut-interactive>`\\ 와 함께 사용하도록 "
7986"설계되었습니다. 파이썬이 :option:`-S` 옵션으로 실행되지 않는 한, 모듈은 자동으로 임포트되고 구성됩니다 (:ref"
8087":`rlcompleter-config`\\ 를 보세요)."
8188
@@ -92,9 +99,8 @@ msgid "Completer objects have the following method:"
9299msgstr "Completer 객체는 다음과 같은 메서드를 가집니다:"
93100
94101#: ../../library/rlcompleter.rst:50
95- #, fuzzy
96102msgid "Return the next possible completion for *text*."
97- msgstr "*text*\\ 에 대한 *state* 번째 완성을 반환합니다."
103+ msgstr "*text*\\ 에 대한 가능한 다음 완성을 반환합니다."
98104
99105#: ../../library/rlcompleter.rst:52
100106msgid ""
@@ -113,7 +119,6 @@ msgstr ""
113119"키워드(:mod:`keyword` 모듈에서 정의한 대로)에 현재 정의된 이름으로 완성됩니다."
114120
115121#: ../../library/rlcompleter.rst:60
116- #, fuzzy
117122msgid ""
118123"If called for a dotted name, it will try to evaluate anything without "
119124"obvious side-effects (functions will not be evaluated, but it can "
@@ -122,10 +127,7 @@ msgid ""
122127"raised during the evaluation of the expression is caught, silenced and "
123128":const:`None` is returned."
124129msgstr ""
125- "점으로 구분된 이름으로 호출하면, 명백한 부작용(함수는 평가되지 않지만 :meth:`__getattr__`\\ 에 대한 호출을 만들 "
126- "수 있습니다)없이 마지막 부분까지 평가하려고 시도하고, 나머지는 :func:`dir` 함수를 통해 일치하는 것을 찾습니다. 표현식을"
127- " 평가하는 동안 발생하는 모든 예외는 잡히고, 억제하며 :const:`None`\\ 을 반환합니다."
128-
129- #~ msgid "Completer Objects"
130- #~ msgstr "Completer 객체"
130+ "점으로 구분된 이름으로 호출하면, 명백한 부작용(함수는 평가되지 않지만 :meth:`~object.__getattr__`\\ 에 대한"
131+ " 호출을 만들 수 있습니다)없이 마지막 부분까지 평가하려고 시도하고, 나머지는 :func:`dir` 함수를 통해 일치하는 것을 "
132+ "찾습니다. 표현식을 평가하는 동안 발생하는 모든 예외는 잡히고, 억제하며 :const:`None`\\ 을 반환합니다."
131133
0 commit comments