11# SOME DESCRIPTIVE TITLE.
2- # Copyright (C) 2001-2018 , Python Software Foundation
2+ # Copyright (C) 2001-2019 , Python Software Foundation
33# This file is distributed under the same license as the Python package.
44# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55#
66# Translators:
77# ww song <[email protected] >, 201888# Henry Zhu <[email protected] >, 201899# SKY H. <[email protected] >, 201810+ # Freesand Leo <[email protected] >, 20191011#
1112#, fuzzy
1213msgid ""
1314msgstr ""
1415"Project-Id-Version : Python 3.7\n "
1516"Report-Msgid-Bugs-To : \n "
16- "POT-Creation-Date : 2018-06-30 05:56 +0900\n "
17+ "POT-Creation-Date : 2019-01-01 10:14 +0900\n "
1718"PO-Revision-Date : 2017-02-16 23:41+0000\n "
18- "Last-Translator : SKY H. <sky19960802@gmail .com>, 2018 \n "
19+ "Last-Translator : Freesand Leo <yuqinju@163 .com>, 2019 \n "
1920"Language-Team : Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n "
2021"MIME-Version : 1.0\n "
2122"Content-Type : text/plain; charset=UTF-8\n "
@@ -234,6 +235,8 @@ msgid ""
234235" and :term:`garbage collection` to eliminate cycles). The memory is freed "
235236"shortly after the last reference to it has been eliminated."
236237msgstr ""
238+ "Python 会自动进行内存管理(对大多数对象进行引用计数并使用 :term:`garbage collection` 来清除循环引用)。 "
239+ "当某个对象的最后一个引用被移除后不久就会释放其所占用的内存。"
237240
238241#: ../../tutorial/stdlib2.rst:254
239242msgid ""
@@ -246,6 +249,9 @@ msgid ""
246249"weakref objects. Typical applications include caching objects that are "
247250"expensive to create::"
248251msgstr ""
252+ "此方式对大多数应用来说都适用,但偶尔也必须在对象持续被其他对象所使用时跟踪它们。 不幸的是,跟踪它们将创建一个会令其永久化的引用。 "
253+ ":mod:`weakref` 模块提供的工具可以不必创建引用就能跟踪对象。 "
254+ "当对象不再需要时,它将自动从一个弱引用表中被移除,并为弱引用对象触发一个回调。 典型应用包括对创建开销较大的对象进行缓存::"
249255
250256#: ../../tutorial/stdlib2.rst:289
251257msgid "Tools for Working with Lists"
0 commit comments