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

Skip to content

Commit 7e924dd

Browse files
committed
Correct typo in PyArg_ParseTuple example.
Add reference to DLD 3.3 at http://www-swiss.ai.mit.edu/~jaffer/DLD.html.
1 parent 3c2871e commit 7e924dd

2 files changed

Lines changed: 18 additions & 10 deletions

File tree

Doc/ext.tex

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -704,7 +704,7 @@ \section{Format Strings for {\tt PyArg_ParseTuple()}}
704704
705705
ok = PyArg_ParseTuple(args, "(ii)s#", &i, &j, &s, &size);
706706
/* A pair of ints and a string, whose size is also returned */
707-
/* Possible Python call: f(1, 2, 'three') */
707+
/* Possible Python call: f((1, 2), 'three') */
708708
709709
{
710710
char *file;
@@ -1251,10 +1251,14 @@ \subsection{GNU Dynamic Loading}
12511251
Atari ST. There is no reason to use it on a Sparc; I haven't seen a
12521252
Sun 3 for years so I don't know if these have shared libraries or not.
12531253

1254-
You need to fetch and build two packages. One is GNU DLD 3.2.3,
1255-
available by anonymous ftp from host \file{ftp.cwi.nl}, directory
1256-
\file{pub/dynload}, file \file{dld-3.2.3.tar.Z}. (As far as I know,
1257-
no further development on GNU DLD is being done.) The other is an
1254+
You need to fetch and build two packages.
1255+
One is GNU DLD. All development of this code has been done with DLD
1256+
version 3.2.3, which is available by anonymous ftp from host
1257+
\file{ftp.cwi.nl}, directory \file{pub/dynload}, file
1258+
\file{dld-3.2.3.tar.Z}. (A more recent version of DLD is available
1259+
via \file{http://www-swiss.ai.mit.edu/~jaffer/DLD.html} but this has
1260+
not been tested.)
1261+
The other package needed is an
12581262
emulation of Jack Jansen's \code{dl} package that I wrote on top of
12591263
GNU DLD 3.2.3. This is available from the same host and directory,
12601264
file dl-dld-1.1.tar.Z. (The version number may change --- but I doubt

Doc/ext/ext.tex

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -704,7 +704,7 @@ \section{Format Strings for {\tt PyArg_ParseTuple()}}
704704
705705
ok = PyArg_ParseTuple(args, "(ii)s#", &i, &j, &s, &size);
706706
/* A pair of ints and a string, whose size is also returned */
707-
/* Possible Python call: f(1, 2, 'three') */
707+
/* Possible Python call: f((1, 2), 'three') */
708708
709709
{
710710
char *file;
@@ -1251,10 +1251,14 @@ \subsection{GNU Dynamic Loading}
12511251
Atari ST. There is no reason to use it on a Sparc; I haven't seen a
12521252
Sun 3 for years so I don't know if these have shared libraries or not.
12531253

1254-
You need to fetch and build two packages. One is GNU DLD 3.2.3,
1255-
available by anonymous ftp from host \file{ftp.cwi.nl}, directory
1256-
\file{pub/dynload}, file \file{dld-3.2.3.tar.Z}. (As far as I know,
1257-
no further development on GNU DLD is being done.) The other is an
1254+
You need to fetch and build two packages.
1255+
One is GNU DLD. All development of this code has been done with DLD
1256+
version 3.2.3, which is available by anonymous ftp from host
1257+
\file{ftp.cwi.nl}, directory \file{pub/dynload}, file
1258+
\file{dld-3.2.3.tar.Z}. (A more recent version of DLD is available
1259+
via \file{http://www-swiss.ai.mit.edu/~jaffer/DLD.html} but this has
1260+
not been tested.)
1261+
The other package needed is an
12581262
emulation of Jack Jansen's \code{dl} package that I wrote on top of
12591263
GNU DLD 3.2.3. This is available from the same host and directory,
12601264
file dl-dld-1.1.tar.Z. (The version number may change --- but I doubt

0 commit comments

Comments
 (0)