Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f23e0fe

Browse files
committed
micro change
1 parent 7e9394a commit f23e0fe

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

Doc/ext.tex

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,7 @@ \section{The {\tt Py_BuildValue()} Function}
838838
\begin{verbatim}
839839
Py_BuildValue("") None
840840
Py_BuildValue("i", 123) 123
841-
Py_BuildValue("ii", 123, 456) (123, 456)
841+
Py_BuildValue("iii", 123, 456, 789) (123, 456, 789)
842842
Py_BuildValue("s", "hello") 'hello'
843843
Py_BuildValue("ss", "hello", "world") ('hello', 'world')
844844
Py_BuildValue("s#", "hello", 4) 'hell'
@@ -847,10 +847,10 @@ \section{The {\tt Py_BuildValue()} Function}
847847
Py_BuildValue("(ii)", 123, 456) (123, 456)
848848
Py_BuildValue("(i,i)", 123, 456) (123, 456)
849849
Py_BuildValue("[i,i]", 123, 456) [123, 456]
850-
Py_BuildValue("{s:i,s:i}", "abc", 123, "def", 456)
851-
{'abc': 123, 'def': 456}
852-
Py_BuildValue("((ii)(ii)) (ii)", 1, 2, 3, 4, 5, 6)
853-
(((1, 2), (3, 4)), (5, 6))
850+
Py_BuildValue("{s:i,s:i}",
851+
"abc", 123, "def", 456) {'abc': 123, 'def': 456}
852+
Py_BuildValue("((ii)(ii)) (ii)",
853+
1, 2, 3, 4, 5, 6) (((1, 2), (3, 4)), (5, 6))
854854
\end{verbatim}
855855

856856

Doc/ext/ext.tex

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,7 @@ \section{The {\tt Py_BuildValue()} Function}
838838
\begin{verbatim}
839839
Py_BuildValue("") None
840840
Py_BuildValue("i", 123) 123
841-
Py_BuildValue("ii", 123, 456) (123, 456)
841+
Py_BuildValue("iii", 123, 456, 789) (123, 456, 789)
842842
Py_BuildValue("s", "hello") 'hello'
843843
Py_BuildValue("ss", "hello", "world") ('hello', 'world')
844844
Py_BuildValue("s#", "hello", 4) 'hell'
@@ -847,10 +847,10 @@ \section{The {\tt Py_BuildValue()} Function}
847847
Py_BuildValue("(ii)", 123, 456) (123, 456)
848848
Py_BuildValue("(i,i)", 123, 456) (123, 456)
849849
Py_BuildValue("[i,i]", 123, 456) [123, 456]
850-
Py_BuildValue("{s:i,s:i}", "abc", 123, "def", 456)
851-
{'abc': 123, 'def': 456}
852-
Py_BuildValue("((ii)(ii)) (ii)", 1, 2, 3, 4, 5, 6)
853-
(((1, 2), (3, 4)), (5, 6))
850+
Py_BuildValue("{s:i,s:i}",
851+
"abc", 123, "def", 456) {'abc': 123, 'def': 456}
852+
Py_BuildValue("((ii)(ii)) (ii)",
853+
1, 2, 3, 4, 5, 6) (((1, 2), (3, 4)), (5, 6))
854854
\end{verbatim}
855855

856856

Doc/lib/libposixfile.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ \section{Standard Module \sectcode{posixfile}}
3737
\begin{funcdesc}{open}{filename\optional{\, mode\optional{\, bufsize}}}
3838
Create a new posixfile object with the given filename and mode. The
3939
\var{filename}, \var{mode} and \var{bufsize} arguments are
40-
interpreted the same way as by the \code{open()} builtin function.
40+
interpreted the same way as by the built-in \code{open()} function.
4141
\end{funcdesc}
4242

4343
\begin{funcdesc}{fileopen}{fileobject}

Doc/libposixfile.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ \section{Standard Module \sectcode{posixfile}}
3737
\begin{funcdesc}{open}{filename\optional{\, mode\optional{\, bufsize}}}
3838
Create a new posixfile object with the given filename and mode. The
3939
\var{filename}, \var{mode} and \var{bufsize} arguments are
40-
interpreted the same way as by the \code{open()} builtin function.
40+
interpreted the same way as by the built-in \code{open()} function.
4141
\end{funcdesc}
4242

4343
\begin{funcdesc}{fileopen}{fileobject}

0 commit comments

Comments
 (0)