321321
322322
323323class Client (object ):
324-
325324 """A client that can connect to the JACK audio server."""
326325
327326 def __init__ (self , name , use_exact_name = False , no_start_server = False ,
@@ -1571,7 +1570,6 @@ def _wrap_port_ptr(self, ptr):
15711570
15721571
15731572class Port (object ):
1574-
15751573 """A JACK audio port.
15761574
15771575 This class cannot be instantiated directly. Instead, instances of
@@ -1691,7 +1689,6 @@ def _hasflag(self, flag):
16911689
16921690
16931691class MidiPort (Port ):
1694-
16951692 """A JACK MIDI port.
16961693
16971694 This class is derived from :class:`Port` and has exactly the same
@@ -1715,7 +1712,6 @@ class MidiPort(Port):
17151712
17161713
17171714class OwnPort (Port ):
1718-
17191715 """A JACK audio port owned by a :class:`Client` object.
17201716
17211717 This class is derived from :class:`Port`. :class:`OwnPort` objects
@@ -1871,7 +1867,6 @@ def get_array(self):
18711867
18721868
18731869class OwnMidiPort (MidiPort , OwnPort ):
1874-
18751870 """A JACK MIDI port owned by a :class:`Client` object.
18761871
18771872 This class is derived from :class:`OwnPort` and :class:`MidiPort`,
@@ -2034,7 +2029,6 @@ def reserve_midi_event(self, time, size):
20342029
20352030
20362031class Ports (object ):
2037-
20382032 """A list of input/output ports.
20392033
20402034 This class is not meant to be instantiated directly. It is only
@@ -2126,7 +2120,6 @@ def clear(self):
21262120
21272121
21282122class RingBuffer (object ):
2129-
21302123 """JACK's lock-free ringbuffer."""
21312124
21322125 def __init__ (self , size ):
@@ -2375,7 +2368,6 @@ def size(self):
23752368
23762369
23772370class Status (object ):
2378-
23792371 """Representation of the JACK status bits."""
23802372
23812373 __slots__ = '_code'
@@ -2475,7 +2467,6 @@ def _hasflag(self, flag):
24752467
24762468
24772469class TransportState (object ):
2478-
24792470 """Representation of the JACK transport state.
24802471
24812472 See Also
@@ -2502,14 +2493,12 @@ def __repr__(self):
25022493
25032494
25042495class JackError (Exception ):
2505-
25062496 """Exception for all kinds of JACK-related errors."""
25072497
25082498 pass
25092499
25102500
25112501class CallbackExit (Exception ):
2512-
25132502 """To be raised in a callback function to signal failure.
25142503
25152504 See Also
0 commit comments