removed pyc files, fixed import bug

This commit is contained in:
Luke Campagnola 2012-03-01 22:21:18 -05:00
parent aaece4badc
commit 4c525ffa06
14 changed files with 4 additions and 2 deletions

Binary file not shown.

BIN
Point.pyc

Binary file not shown.

1
Qt.py
View File

@ -1,5 +1,6 @@
## Do all Qt imports from here to allow easier PyQt / PySide compatibility ## Do all Qt imports from here to allow easier PyQt / PySide compatibility
#from PySide import QtGui, QtCore, QtOpenGL, QtSvg
from PyQt4 import QtGui, QtCore, QtOpenGL, QtSvg from PyQt4 import QtGui, QtCore, QtOpenGL, QtSvg
if not hasattr(QtCore, 'Signal'): if not hasattr(QtCore, 'Signal'):
QtCore.Signal = QtCore.pyqtSignal QtCore.Signal = QtCore.pyqtSignal

BIN
Qt.pyc

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
debug.pyc

Binary file not shown.

Binary file not shown.

View File

@ -3,7 +3,7 @@ from pyqtgraph.GraphicsScene import GraphicsScene
from pyqtgraph.Point import Point from pyqtgraph.Point import Point
import weakref import weakref
class GraphicsItemMethods: class GraphicsItemMethods(object):
""" """
Class providing useful methods to GraphicsObject and GraphicsWidget. Class providing useful methods to GraphicsObject and GraphicsWidget.
""" """

View File

@ -24,6 +24,7 @@ from pyqtgraph.widgets.FileDialog import FileDialog
import weakref import weakref
#from types import * #from types import *
import numpy as np import numpy as np
import os
#from .. PlotCurveItem import PlotCurveItem #from .. PlotCurveItem import PlotCurveItem
#from .. ScatterPlotItem import ScatterPlotItem #from .. ScatterPlotItem import ScatterPlotItem
from .. PlotDataItem import PlotDataItem from .. PlotDataItem import PlotDataItem

Binary file not shown.

BIN
ptime.pyc

Binary file not shown.