Changeset 391 for python/trunk/Doc/library/netrc.rst
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Doc/library/netrc.rst
r2 r391 11 11 .. versionadded:: 1.5.2 12 12 13 **Source code:** :source:`Lib/netrc.py` 14 15 -------------- 16 13 17 The :class:`netrc` class parses and encapsulates the netrc file format used by 14 18 the Unix :program:`ftp` program and other FTP clients. … … 22 26 be read. Parse errors will raise :exc:`NetrcParseError` with diagnostic 23 27 information including the file name, line number, and terminating token. 28 If no argument is specified on a POSIX system, the presence of passwords in 29 the :file:`.netrc` file will raise a :exc:`NetrcParseError` if the file 30 ownership or permissions are insecure (owned by a user other than the user 31 running the process, or accessible for read or write by any other user). 32 This implements security behavior equivalent to that of ftp and other 33 programs that use :file:`.netrc`. 34 35 .. versionchanged:: 2.7.6 Added the POSIX permissions check. 24 36 25 37
Note:
See TracChangeset
for help on using the changeset viewer.