diff options
author | Georg Brandl <georg@python.org> | 2008-05-26 17:55:52 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-26 17:55:52 (GMT) |
commit | f4a41231b2ddcd4bd6131e69c854249d8eb75899 (patch) | |
tree | 7aaf7a5a2f3d8de08495602fea4d20edcaa479fd /Doc/library/uu.rst | |
parent | 95f5686e4d956edff0b3bb4aaae4fe12b81f6521 (diff) | |
download | cpython-f4a41231b2ddcd4bd6131e69c854249d8eb75899.zip cpython-f4a41231b2ddcd4bd6131e69c854249d8eb75899.tar.gz cpython-f4a41231b2ddcd4bd6131e69c854249d8eb75899.tar.bz2 |
Fix old-style octal literals in the docs.
Diffstat (limited to 'Doc/library/uu.rst')
-rw-r--r-- | Doc/library/uu.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/uu.rst b/Doc/library/uu.rst index e2303c3..7973439 100644 --- a/Doc/library/uu.rst +++ b/Doc/library/uu.rst @@ -27,10 +27,10 @@ The :mod:`uu` module defines the following functions: .. function:: encode(in_file, out_file[, name[, mode]]) - Uuencode file *in_file* into file *out_file*. The uuencoded file will have the - header specifying *name* and *mode* as the defaults for the results of decoding - the file. The default defaults are taken from *in_file*, or ``'-'`` and ``0666`` - respectively. + Uuencode file *in_file* into file *out_file*. The uuencoded file will have + the header specifying *name* and *mode* as the defaults for the results of + decoding the file. The default defaults are taken from *in_file*, or ``'-'`` + and ``0o666`` respectively. .. function:: decode(in_file[, out_file[, mode[, quiet]]]) |