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#
88msgstr ""
99"Project-Id-Version : Python 3.7\n "
1010"Report-Msgid-Bugs-To : \n "
11- "POT-Creation-Date : 2018-11-08 09:41 +0900\n "
11+ "POT-Creation-Date : 2019-01-16 10:22 +0900\n "
1212"PO-Revision-Date : 2017-02-16 23:20+0000\n "
1313"Language-Team : Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n "
1414"MIME-Version : 1.0\n "
@@ -98,12 +98,12 @@ msgstr ""
9898#: ../../library/os.path.rst:211 ../../library/os.path.rst:223
9999#: ../../library/os.path.rst:232 ../../library/os.path.rst:242
100100#: ../../library/os.path.rst:252 ../../library/os.path.rst:262
101- #: ../../library/os.path.rst:272 ../../library/os.path.rst:290
102- #: ../../library/os.path.rst:323 ../../library/os.path.rst:335
103- #: ../../library/os.path.rst:344 ../../library/os.path.rst:359
104- #: ../../library/os.path.rst:377 ../../library/os.path.rst:390
105- #: ../../library/os.path.rst:406 ../../library/os.path.rst:422
106- #: ../../library/os.path.rst:443 ../../library/os.path.rst:454
101+ #: ../../library/os.path.rst:272 ../../library/os.path.rst:291
102+ #: ../../library/os.path.rst:324 ../../library/os.path.rst:336
103+ #: ../../library/os.path.rst:345 ../../library/os.path.rst:360
104+ #: ../../library/os.path.rst:378 ../../library/os.path.rst:391
105+ #: ../../library/os.path.rst:407 ../../library/os.path.rst:423
106+ #: ../../library/os.path.rst:444 ../../library/os.path.rst:455
107107msgid "Accepts a :term:`path-like object`."
108108msgstr ""
109109
@@ -124,9 +124,9 @@ msgid ""
124124"path."
125125msgstr ""
126126
127- #: ../../library/os.path.rst:89 ../../library/os.path.rst:358
128- #: ../../library/os.path.rst:370 ../../library/os.path.rst:386
129- #: ../../library/os.path.rst:402
127+ #: ../../library/os.path.rst:89 ../../library/os.path.rst:359
128+ #: ../../library/os.path.rst:371 ../../library/os.path.rst:387
129+ #: ../../library/os.path.rst:403
130130msgid ":ref:`Availability <availability>`: Unix, Windows."
131131msgstr ""
132132
@@ -280,19 +280,20 @@ msgstr ""
280280msgid ""
281281"Return ``True`` if pathname *path* is a :dfn:`mount point`: a point in a "
282282"file system where a different file system has been mounted. On POSIX, the "
283- "function checks whether *path*'s parent, :file:`path/..`, is on a different "
284- "device than *path*, or whether :file:`path/..` and *path* point to the same "
285- "i-node on the same device --- this should detect mount points for all Unix "
286- "and POSIX variants. On Windows, a drive letter root and a share UNC are "
287- "always mount points, and for any other path ``GetVolumePathName`` is called "
288- "to see if it is different from the input path."
283+ "function checks whether *path*'s parent, :file:`{path}/..`, is on a "
284+ "different device than *path*, or whether :file:`{path}/..` and *path* point "
285+ "to the same i-node on the same device --- this should detect mount points "
286+ "for all Unix and POSIX variants. It is not able to reliably detect bind "
287+ "mounts on the same filesystem. On Windows, a drive letter root and a share "
288+ "UNC are always mount points, and for any other path ``GetVolumePathName`` is"
289+ " called to see if it is different from the input path."
289290msgstr ""
290291
291- #: ../../library/os.path.rst:287
292+ #: ../../library/os.path.rst:288
292293msgid "Support for detecting non-root mount points on Windows."
293294msgstr ""
294295
295- #: ../../library/os.path.rst:296
296+ #: ../../library/os.path.rst:297
296297msgid ""
297298"Join one or more path components intelligently. The return value is the "
298299"concatenation of *path* and any members of *\\ *paths* with exactly one "
@@ -302,7 +303,7 @@ msgid ""
302303"thrown away and joining continues from the absolute path component."
303304msgstr ""
304305
305- #: ../../library/os.path.rst:304
306+ #: ../../library/os.path.rst:305
306307msgid ""
307308"On Windows, the drive letter is not reset when an absolute path component "
308309"(e.g., ``r'\\ foo'``) is encountered. If a component contains a drive "
@@ -312,11 +313,11 @@ msgid ""
312313"directory on drive :file:`C:` (:file:`c:foo`), not :file:`c:\\\\ foo`."
313314msgstr ""
314315
315- #: ../../library/os.path.rst:311
316+ #: ../../library/os.path.rst:312
316317msgid "Accepts a :term:`path-like object` for *path* and *paths*."
317318msgstr ""
318319
319- #: ../../library/os.path.rst:317
320+ #: ../../library/os.path.rst:318
320321msgid ""
321322"Normalize the case of a pathname. On Unix and Mac OS X, this returns the "
322323"path unchanged; on case-insensitive filesystems, it converts the path to "
@@ -326,7 +327,7 @@ msgid ""
326327"interface)."
327328msgstr ""
328329
329- #: ../../library/os.path.rst:329
330+ #: ../../library/os.path.rst:330
330331msgid ""
331332"Normalize a pathname by collapsing redundant separators and up-level "
332333"references so that ``A//B``, ``A/B/``, ``A/./B`` and ``A/foo/../B`` all "
@@ -335,56 +336,56 @@ msgid ""
335336"backward slashes. To normalize case, use :func:`normcase`."
336337msgstr ""
337338
338- #: ../../library/os.path.rst:341
339+ #: ../../library/os.path.rst:342
339340msgid ""
340341"Return the canonical path of the specified filename, eliminating any "
341342"symbolic links encountered in the path (if they are supported by the "
342343"operating system)."
343344msgstr ""
344345
345- #: ../../library/os.path.rst:350
346+ #: ../../library/os.path.rst:351
346347msgid ""
347348"Return a relative filepath to *path* either from the current directory or "
348349"from an optional *start* directory. This is a path computation: the "
349350"filesystem is not accessed to confirm the existence or nature of *path* or "
350351"*start*."
351352msgstr ""
352353
353- #: ../../library/os.path.rst:355
354+ #: ../../library/os.path.rst:356
354355msgid "*start* defaults to :attr:`os.curdir`."
355356msgstr ""
356357
357- #: ../../library/os.path.rst:365
358+ #: ../../library/os.path.rst:366
358359msgid ""
359360"Return ``True`` if both pathname arguments refer to the same file or "
360361"directory. This is determined by the device number and i-node number and "
361362"raises an exception if an :func:`os.stat` call on either pathname fails."
362363msgstr ""
363364
364- #: ../../library/os.path.rst:371 ../../library/os.path.rst:387
365- #: ../../library/os.path.rst:403
365+ #: ../../library/os.path.rst:372 ../../library/os.path.rst:388
366+ #: ../../library/os.path.rst:404
366367msgid "Added Windows support."
367368msgstr ""
368369
369- #: ../../library/os.path.rst:374
370+ #: ../../library/os.path.rst:375
370371msgid "Windows now uses the same implementation as all other platforms."
371372msgstr ""
372373
373- #: ../../library/os.path.rst:383
374+ #: ../../library/os.path.rst:384
374375msgid ""
375376"Return ``True`` if the file descriptors *fp1* and *fp2* refer to the same "
376377"file."
377378msgstr ""
378379
379- #: ../../library/os.path.rst:396
380+ #: ../../library/os.path.rst:397
380381msgid ""
381382"Return ``True`` if the stat tuples *stat1* and *stat2* refer to the same "
382383"file. These structures may have been returned by :func:`os.fstat`, "
383384":func:`os.lstat`, or :func:`os.stat`. This function implements the "
384385"underlying comparison used by :func:`samefile` and :func:`sameopenfile`."
385386msgstr ""
386387
387- #: ../../library/os.path.rst:412
388+ #: ../../library/os.path.rst:413
388389msgid ""
389390"Split the pathname *path* into a pair, ``(head, tail)`` where *tail* is the "
390391"last pathname component and *head* is everything leading up to that. The "
@@ -397,43 +398,43 @@ msgid ""
397398" and :func:`basename`."
398399msgstr ""
399400
400- #: ../../library/os.path.rst:428
401+ #: ../../library/os.path.rst:429
401402msgid ""
402403"Split the pathname *path* into a pair ``(drive, tail)`` where *drive* is "
403404"either a mount point or the empty string. On systems which do not use drive"
404405" specifications, *drive* will always be the empty string. In all cases, "
405406"``drive + tail`` will be the same as *path*."
406407msgstr ""
407408
408- #: ../../library/os.path.rst:433
409+ #: ../../library/os.path.rst:434
409410msgid ""
410411"On Windows, splits a pathname into drive/UNC sharepoint and relative path."
411412msgstr ""
412413
413- #: ../../library/os.path.rst:435
414+ #: ../../library/os.path.rst:436
414415msgid ""
415416"If the path contains a drive letter, drive will contain everything up to and"
416417" including the colon. e.g. ``splitdrive(\" c:/dir\" )`` returns ``(\" c:\" , "
417418"\" /dir\" )``"
418419msgstr ""
419420
420- #: ../../library/os.path.rst:439
421+ #: ../../library/os.path.rst:440
421422msgid ""
422423"If the path contains a UNC path, drive will contain the host name and share,"
423424" up to but not including the fourth separator. e.g. "
424425"``splitdrive(\" //host/computer/dir\" )`` returns ``(\" //host/computer\" , "
425426"\" /dir\" )``"
426427msgstr ""
427428
428- #: ../../library/os.path.rst:449
429+ #: ../../library/os.path.rst:450
429430msgid ""
430431"Split the pathname *path* into a pair ``(root, ext)`` such that ``root + "
431432"ext == path``, and *ext* is empty or begins with a period and contains at "
432433"most one period. Leading periods on the basename are ignored; "
433434"``splitext('.cshrc')`` returns ``('.cshrc', '')``."
434435msgstr ""
435436
436- #: ../../library/os.path.rst:460
437+ #: ../../library/os.path.rst:461
437438msgid ""
438439"``True`` if arbitrary Unicode strings can be used as file names (within "
439440"limitations imposed by the file system)."
0 commit comments