summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/ext.tex10
-rw-r--r--Doc/ext/ext.tex10
-rw-r--r--Doc/lib/libposixfile.tex2
-rw-r--r--Doc/libposixfile.tex2
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}