@@ -742,8 +742,8 @@ def __init__(self, kind, samplerate=None, blocksize=None, device=None,
742
742
`RawStream`, `RawInputStream` and `RawOutputStream` instead.
743
743
744
744
This class has the same properties and methods as `Stream`,
745
- except for `read_available`/:meth: `~Stream.read` and
746
- `write_available`/:meth: `~Stream.write`.
745
+ except for `~Stream. read_available`/`~Stream.read() ` and
746
+ `~Stream. write_available`/`~Stream.write() `.
747
747
748
748
It can be created with the same parameters as `Stream`,
749
749
except that there are three additional parameters
@@ -1176,7 +1176,7 @@ def __init__(self, samplerate=None, blocksize=None,
1176
1176
"""PortAudio input stream (using buffer objects).
1177
1177
1178
1178
This is the same as `InputStream`, except that the *callback*
1179
- function and :meth: `~RawStream.read` work on plain Python buffer
1179
+ function and `~RawStream.read() ` work on plain Python buffer
1180
1180
objects instead of on NumPy arrays.
1181
1181
NumPy is not necessary for using this.
1182
1182
@@ -1234,7 +1234,7 @@ def read(self, frames):
1234
1234
samples in the format specified by the *dtype* parameter
1235
1235
used to open the stream, and the number of channels
1236
1236
specified by *channels*.
1237
- See also `samplesize`.
1237
+ See also `~Stream. samplesize`.
1238
1238
overflowed : bool
1239
1239
See `Stream.read()`.
1240
1240
@@ -1262,7 +1262,7 @@ def __init__(self, samplerate=None, blocksize=None,
1262
1262
"""PortAudio output stream (using buffer objects).
1263
1263
1264
1264
This is the same as `OutputStream`, except that the *callback*
1265
- function and :meth: `~RawStream.write` work on plain Python
1265
+ function and `~RawStream.write() ` work on plain Python
1266
1266
buffer objects instead of on NumPy arrays.
1267
1267
NumPy is not necessary for using this.
1268
1268
@@ -1317,7 +1317,7 @@ def write(self, data):
1317
1317
*channels*. The length of the buffer is not constrained to
1318
1318
a specific range, however high performance applications will
1319
1319
want to match this parameter to the *blocksize* parameter
1320
- used when opening the stream. See also `samplesize`.
1320
+ used when opening the stream. See also `~Stream. samplesize`.
1321
1321
1322
1322
Returns
1323
1323
-------
@@ -1378,7 +1378,7 @@ def __init__(self, samplerate=None, blocksize=None,
1378
1378
``'uint8'``), this also supports ``'int24'``, i.e.
1379
1379
packed 24 bit format.
1380
1380
The default value can be changed with `default.dtype`.
1381
- See also `samplesize`.
1381
+ See also `~Stream. samplesize`.
1382
1382
callback : callable
1383
1383
User-supplied function to consume, process or generate audio
1384
1384
data in response to requests from an active stream.
@@ -1413,7 +1413,7 @@ def __init__(self, samplerate=None, blocksize=None,
1413
1413
"""PortAudio input stream (using NumPy).
1414
1414
1415
1415
This has the same methods and attributes as `Stream`, except
1416
- :meth: `~Stream.write` and `write_available`.
1416
+ `~Stream.write() ` and `~Stream. write_available`.
1417
1417
Furthermore, the stream callback is expected to have a different
1418
1418
signature (see below).
1419
1419
@@ -1488,7 +1488,7 @@ def __init__(self, samplerate=None, blocksize=None,
1488
1488
"""PortAudio output stream (using NumPy).
1489
1489
1490
1490
This has the same methods and attributes as `Stream`, except
1491
- :meth: `~Stream.read` and `read_available`.
1491
+ `~Stream.read() ` and `~Stream. read_available`.
1492
1492
Furthermore, the stream callback is expected to have a different
1493
1493
signature (see below).
1494
1494
@@ -2110,7 +2110,7 @@ class default:
2110
2110
2111
2111
See Also
2112
2112
--------
2113
- :func: `query_devices`
2113
+ `query_devices() `
2114
2114
2115
2115
"""
2116
2116
channels = _default_channels = None , None
@@ -2120,7 +2120,7 @@ class default:
2120
2120
2121
2121
See Also
2122
2122
--------
2123
- :func: `query_devices`
2123
+ `query_devices() `
2124
2124
2125
2125
"""
2126
2126
dtype = _default_dtype = 'float32' , 'float32'
@@ -2152,7 +2152,7 @@ class default:
2152
2152
2153
2153
See Also
2154
2154
--------
2155
- :func: `query_devices`
2155
+ `query_devices() `
2156
2156
2157
2157
"""
2158
2158
blocksize = _lib .paFramesPerBufferUnspecified
@@ -2272,7 +2272,7 @@ class CallbackStop(Exception):
2272
2272
2273
2273
See Also
2274
2274
--------
2275
- CallbackAbort, :meth: `Stream.stop`, Stream
2275
+ CallbackAbort, `Stream.stop() `, Stream
2276
2276
2277
2277
"""
2278
2278
@@ -2285,7 +2285,7 @@ class CallbackAbort(Exception):
2285
2285
2286
2286
See Also
2287
2287
--------
2288
- CallbackStop, :meth: `Stream.abort`, Stream
2288
+ CallbackStop, `Stream.abort() `, Stream
2289
2289
2290
2290
"""
2291
2291
0 commit comments