Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(2) | Call(0) | Derive(0) | Import(2)
int(x=0) -> int or long int(x, base=10) -> int or long Convert a number or string to an integer, or return 0 if no arguments are given. If x is floating point, the conversion truncates towards zero. If x is outside the integer range, the function returns a long instead. If x is not a number or if base is given, then x must be a string or Unicode object representing an integer literal in the given base. The literal can be preceded by '+' or '-' and be surrounded by whitespace. The base defaults to 10. Valid bases are 0 and 2-36. Base 0 means to interpret the base from the string as an integer literal. >>> int('0b100', base=0) 4
src/i/l/ilastik-HEAD/ilastik/widgets/labelListModel.py ilastik(Download)
from PyQt4.QtGui import QColor, QPixmap, QIcon, QItemSelectionModel, QImage from PyQt4.QtCore import Qt, pyqtSignal from listModel import ListModel,ListElement,_NPIXELS
except KeyError: if a == b: pixmap = QPixmap(_NPIXELS, _NPIXELS) pixmap.fill(value.brushColor()) else: img = QImage(_NPIXELS,_NPIXELS, QImage.Format_RGB32)
src/i/l/ilastik-HEAD/ilastik/widgets/boxListModel.py ilastik(Download)
from PyQt4.QtGui import QColor, QPixmap, QIcon, QItemSelectionModel, QPainter, QPen, QImage, QDialog,QColorDialog,QGraphicsTextItem from PyQt4.QtCore import QObject, QAbstractTableModel, Qt, QModelIndex, pyqtSignal,QString,QVariant from listModel import ListModel,ListElement,_NPIXELS #from labelListModel import LabelListModel import logging
row = index.row() value = self._elements[row] pixmap = QPixmap(_NPIXELS, _NPIXELS) pixmap.fill(value.color) icon = QIcon(pixmap)
value = self._elements[row] pixmap = QPixmap(_NPIXELS,_NPIXELS) if value.isFixed: