Use set/get_[x|y]bound instead of set/get_[x|y]lim
[oscopy.git] / oscopy / __init__.py
blob9b216690f5f52d940435ccfa9f168b2082d7324c
2 from signal import Signal
3 from figure import Figure
4 from context import Context
5 from readers.reader import ReadError
6 from graphs import factors_to_names, abbrevs_to_factors, names_to_factors
7 import gobject
8 from figure import MAX_GRAPHS_PER_FIGURE
10 gobject.type_register(signal.Signal)
12 try:
13 get_ipython()
14 except NameError:
15 pass
16 else:
17 import ioscopy
18 ioscopy.init()