Fix old-style octal literals in the docs.
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 @@
 
 .. 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]]])