* Stream.___fast_start()__ rewritten.
* __Cue__._mk_info_section__ renamed to __Cue.mk_info_section__
* __reserve()__ function added to threefive.__tools__
* __f2i()__ function removed from threefive.__tools__
* __More__ documentation in __stream.py__
Committer: a <anetfu.org

>
v.2.2.39
* As of __2.2.39, threefive.Cue__ will require __Cue.decode()__ to be called to parse data.
python3
from threefive import Cue
Base64 = "/DAvAAAAAAAA///wBQb+dGKQoAAZAhdDVUVJSAAAjn+fCAgAAAAALKChijUCAKnMZ1g="
cue = Cue(Base64)
cue.decode() Now required
cue.show()
* The __threefive.Stream__ class __should__ now support SCTE-35 cues __> 184 bytes , thanks__ to [ __Richard__ ](https://github.com/richard-vd).

v.2.2.37
* __Critical__ bug __fix__ for __examples/multicast__
* __Removed__ Stream __.decode_next()__
* __Removed StreamB__ class

v.2.2.33
I got ahead of myself with the StreamB class, StreamB.tsdata should have been StreamB._tsdata in the __init__ method.

v.2.2.31
threefive.StreamB implements the super fast "Magic Bytes" technique for SCTE-35 packet detection.
SCTE-35 packet detection in less than ten lines of code.
python3
def chk_magic(self,packet):
if len(packet) < 20:
return False
if packet[5] == 0xfc:
if packet[6] == 48:
if packet[8] == 0:
if packet[15] == 255:
return packet[18] in self._CMD_TYPES

v.2.2.29
Multicast Mea Culpa Fix
Fixes:
* [multicast example errors ](https://github.com/futzu/SCTE35-threefive/blob/master/examples/multicast/ts_scte_parser.py)
* The __Stream__ ._parser(__pkt__) method __return__ is now __return None__.
* The __return__ without a value __resolved True__, now they resolve __False__, as __expected__

v.2.2.27

Nobody Puts Baby in the Corner
v.2.2.25
Heavy pylint clean up.
threefive pylint score: 8.42/10
js
afuhq:~/SCTE35-threefive$ radon cc -s threefive
110 blocks (classes, functions, methods) analyzed.