From: Georg Brandl Date: Sun, 19 Aug 2007 18:43:50 +0000 (+0000) Subject: Fix stray backticks. X-Git-Tag: v2.6a1~1477 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c553f4290766e0a9b713af7c120b9c2a0af1df64;p=thirdparty%2FPython%2Fcpython.git Fix stray backticks. --- diff --git a/Doc/library/fm.rst b/Doc/library/fm.rst index b6b4c4bcd41d..0ab2781ec9d1 100644 --- a/Doc/library/fm.rst +++ b/Doc/library/fm.rst @@ -86,8 +86,7 @@ Font handle objects support the following operations: Returns a tuple giving some pertinent data about this font. This is an interface to ``fmgetfontinfo()``. The returned tuple contains the following numbers: - ``(``*printermatched*, *fixed_width*, *xorig*, *yorig*, *xsize*, *ysize*, - *height*, *nglyphs*``)``. + ``(printermatched, fixed_width, xorig, yorig, xsize, ysize, height, nglyphs)``. .. method:: font handle.getstrwidth(string) diff --git a/Doc/library/formatter.rst b/Doc/library/formatter.rst index 2774a2bda67c..ba09b8e838a8 100644 --- a/Doc/library/formatter.rst +++ b/Doc/library/formatter.rst @@ -242,8 +242,8 @@ typically be provided by the application. .. method:: writer.new_font(font) Set the font style. The value of *font* will be ``None``, indicating that the - device's default font should be used, or a tuple of the form ``(``*size*, - *italic*, *bold*, *teletype*``)``. Size will be a string indicating the size of + device's default font should be used, or a tuple of the form ``(size, + italic, bold, teletype)``. Size will be a string indicating the size of font that should be used; specific strings and their interpretation must be defined by the application. The *italic*, *bold*, and *teletype* values are Boolean values specifying which of those font attributes should be used.