From f23e0fe3beb5ebca676359ca7d19c653dc63a998 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sat, 18 Mar 1995 11:04:29 +0000 Subject: micro change --- Doc/ext.tex | 10 +++++----- Doc/ext/ext.tex | 10 +++++----- Doc/lib/libposixfile.tex | 2 +- Doc/libposixfile.tex | 2 +- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Doc/ext.tex b/Doc/ext.tex index f92d96c..bb0b4f3 100644 --- a/Doc/ext.tex +++ b/Doc/ext.tex @@ -838,7 +838,7 @@ Examples (to the left the call, to the right the resulting Python value): \begin{verbatim} Py_BuildValue("") None Py_BuildValue("i", 123) 123 - Py_BuildValue("ii", 123, 456) (123, 456) + Py_BuildValue("iii", 123, 456, 789) (123, 456, 789) Py_BuildValue("s", "hello") 'hello' Py_BuildValue("ss", "hello", "world") ('hello', 'world') Py_BuildValue("s#", "hello", 4) 'hell' @@ -847,10 +847,10 @@ Examples (to the left the call, to the right the resulting Python value): Py_BuildValue("(ii)", 123, 456) (123, 456) Py_BuildValue("(i,i)", 123, 456) (123, 456) Py_BuildValue("[i,i]", 123, 456) [123, 456] - Py_BuildValue("{s:i,s:i}", "abc", 123, "def", 456) - {'abc': 123, 'def': 456} - Py_BuildValue("((ii)(ii)) (ii)", 1, 2, 3, 4, 5, 6) - (((1, 2), (3, 4)), (5, 6)) + Py_BuildValue("{s:i,s:i}", + "abc", 123, "def", 456) {'abc': 123, 'def': 456} + Py_BuildValue("((ii)(ii)) (ii)", + 1, 2, 3, 4, 5, 6) (((1, 2), (3, 4)), (5, 6)) \end{verbatim} diff --git a/Doc/ext/ext.tex b/Doc/ext/ext.tex index f92d96c..bb0b4f3 100644 --- a/Doc/ext/ext.tex +++ b/Doc/ext/ext.tex @@ -838,7 +838,7 @@ Examples (to the left the call, to the right the resulting Python value): \begin{verbatim} Py_BuildValue("") None Py_BuildValue("i", 123) 123 - Py_BuildValue("ii", 123, 456) (123, 456) + Py_BuildValue("iii", 123, 456, 789) (123, 456, 789) Py_BuildValue("s", "hello") 'hello' Py_BuildValue("ss", "hello", "world") ('hello', 'world') Py_BuildValue("s#", "hello", 4) 'hell' @@ -847,10 +847,10 @@ Examples (to the left the call, to the right the resulting Python value): Py_BuildValue("(ii)", 123, 456) (123, 456) Py_BuildValue("(i,i)", 123, 456) (123, 456) Py_BuildValue("[i,i]", 123, 456) [123, 456] - Py_BuildValue("{s:i,s:i}", "abc", 123, "def", 456) - {'abc': 123, 'def': 456} - Py_BuildValue("((ii)(ii)) (ii)", 1, 2, 3, 4, 5, 6) - (((1, 2), (3, 4)), (5, 6)) + Py_BuildValue("{s:i,s:i}", + "abc", 123, "def", 456) {'abc': 123, 'def': 456} + Py_BuildValue("((ii)(ii)) (ii)", + 1, 2, 3, 4, 5, 6) (((1, 2), (3, 4)), (5, 6)) \end{verbatim} diff --git a/Doc/lib/libposixfile.tex b/Doc/lib/libposixfile.tex index c472c95..b257bbd 100644 --- a/Doc/lib/libposixfile.tex +++ b/Doc/lib/libposixfile.tex @@ -37,7 +37,7 @@ The posixfile module defines the following functions: \begin{funcdesc}{open}{filename\optional{\, mode\optional{\, bufsize}}} Create a new posixfile object with the given filename and mode. The \var{filename}, \var{mode} and \var{bufsize} arguments are - interpreted the same way as by the \code{open()} builtin function. + interpreted the same way as by the built-in \code{open()} function. \end{funcdesc} \begin{funcdesc}{fileopen}{fileobject} diff --git a/Doc/libposixfile.tex b/Doc/libposixfile.tex index c472c95..b257bbd 100644 --- a/Doc/libposixfile.tex +++ b/Doc/libposixfile.tex @@ -37,7 +37,7 @@ The posixfile module defines the following functions: \begin{funcdesc}{open}{filename\optional{\, mode\optional{\, bufsize}}} Create a new posixfile object with the given filename and mode. The \var{filename}, \var{mode} and \var{bufsize} arguments are - interpreted the same way as by the \code{open()} builtin function. + interpreted the same way as by the built-in \code{open()} function. \end{funcdesc} \begin{funcdesc}{fileopen}{fileobject} -- cgit v0.12