Implements rich comparison of Stream objects for ”!=” operator.
Example
>>> from obspy import read >>> st = read() >>> st2 = st.copy() >>> st is st2 False >>> st != st2 False
Enter search terms or a module, class or function name.