Searching 3771 files for "NotImplemented" (case sensitive) /orange/Orange/OrangeWidgets/OWClustering.py: 856 self.span = span 857 858: raise NotImplementedError 859 860 ... 897 self.setRoot(root) 898 899: raise NotImplementedError 900 901 def set_root(self, root): /orange/Orange/OrangeWidgets/OWGUI.py: 1945 def _toPyObject(variant): 1946 val = variant.toPyObject() 1947: if isinstance(val, type(NotImplemented)): 1948 # PyQt 4.4 converts python int, floats ... to C types and 1949 # cannot convert them back again and returns an exception instance. /orange/Orange/OrangeWidgets/Classify/OWCN2RulesViewer.py: 17 def _toPyObject(variant): 18 val = variant.toPyObject() 19: if isinstance(val, type(NotImplemented)): # PyQt 4.4 converts python int, floats ... to C types 20 qtype = variant.type() 21 if qtype == QVariant.Double: /orange/Orange/OrangeWidgets/Data/OWRank.py: 15 def _toPyObject(variant): 16 val = variant.toPyObject() 17: if isinstance(val, type(NotImplemented)): 18 # PyQt 4.4 converts python int, floats ... to C types and 19 # cannot convert them back again and returns an exception instance. /orange/Orange/OrangeWidgets/Unsupervised/OWSOMVisualizer.py: 824 825 def setComponentPlane(self, *args): 826: raise NotImplemented 827 828 baseColor = QColor(20,20,20) /orange/Orange/classification/logreg.py: 194 # classification not implemented yet. For now its use is only to 195 # provide regression coefficients and its statistics 196: raise NotImplemented 197 198 /orange/Orange/clustering/kmeans.py: 181 def score_conditional_entropy(km): 182 """UNIMPLEMENTED cluster quality measured by conditional entropy""" 183: raise NotImplemented 184 185 def score_within_cluster_distance(km): 186 """UNIMPLEMENTED weighted average within-cluster pairwise distance""" 187: raise NotImplemented 188 189 score_within_cluster_distance.minimize = True /orange/Orange/data/io.py: 693 elif var_t == variable.Python: 694 # Python variables are not supported yet 695: raise NotImplementedError() 696 elif var_t is None: 697 # Unknown variable type, to be deduced at the end /orange/Orange/evaluation/scoring.py: 225 scores[i][tex.iteration_number] += (float(cls) - ai)**2 226 else: # unweighted != 0 227: raise NotImplementedError, "weighted error scores with SE not implemented yet" 228 229 if argkw.get("norm-abs") or argkw.get("norm-sqr"): /orange/Orange/evaluation/testing.py: 186 187 def load_from_files(self, learners, filename): 188: raise NotImplementedError("This feature is no longer supported.") 189 190 def save_to_files(self, learners, filename): 191: raise NotImplementedError("This feature is no longer supported. Pickle whole class instead.") 192 193 def create_tested_example(self, fold, example): /orange/Orange/misc/collections.py: 95 96 def update(self, mapping): 97: raise NotImplementedError 98 99 def __len__(self): ... 111 112 def __delitem__(self, key): 113: raise NotImplementedError 114 115 def clear(self): 116: raise NotImplementedError 117 118 def todict(self): /orange/Orange/misc/render.py: 217 218 def draw_line(self, sx, sy, ex, ey, **kwargs): 219: raise NotImplementedError 220 221 def draw_lines(self, points, **kwargs): 222: raise NotImplementedError 223 224 def draw_rect(self, x, y, w, h, **kwargs): 225: raise NotImplementedError 226 227 def draw_polygon(self, vertices, **kwargs): 228: raise NotImplementedError 229 230 def draw_arch(self, something, **kwargs): 231: raise NotImplementedError 232 233 def draw_text(self, x, y, text, **kwargs): 234: raise NotImplementedError 235 236 def string_size_hint(self, text, **kwargs): ... 251 252 def save(self, file): 253: raise NotImplementedError 254 255 def close(self, file): /orange/Orange/orng/orngMisc.py: 544 545 def draw_line(self, sx, sy, ex, ey, **kwargs): 546: raise NotImplemented 547 548 def draw_lines(self, points, **kwargs): 549: raise NotImplemented 550 551 def draw_rect(self, x, y, w, h, **kwargs): 552: raise NotImplemented 553 554 def draw_polygon(self, vertices, **kwargs): 555: raise NotImplemented 556 557 def draw_arch(self, something, **kwargs): 558: raise NotImplemented 559 560 def draw_text(self, x, y, text, **kwargs): 561: raise NotImplemented 562 563 def string_size_hint(self, text, **kwargs): ... 578 579 def save(self): 580: raise NotImplemented 581 582 def close(self, file): /orange/build/lib.linux-i686-2.6/Orange/OrangeWidgets/OWClustering.py: 856 self.span = span 857 858: raise NotImplementedError 859 860 ... 897 self.setRoot(root) 898 899: raise NotImplementedError 900 901 def set_root(self, root): /orange/build/lib.linux-i686-2.6/Orange/OrangeWidgets/OWGUI.py: 1945 def _toPyObject(variant): 1946 val = variant.toPyObject() 1947: if isinstance(val, type(NotImplemented)): 1948 # PyQt 4.4 converts python int, floats ... to C types and 1949 # cannot convert them back again and returns an exception instance. /orange/build/lib.linux-i686-2.6/Orange/OrangeWidgets/Classify/OWCN2RulesViewer.py: 17 def _toPyObject(variant): 18 val = variant.toPyObject() 19: if isinstance(val, type(NotImplemented)): # PyQt 4.4 converts python int, floats ... to C types 20 qtype = variant.type() 21 if qtype == QVariant.Double: /orange/build/lib.linux-i686-2.6/Orange/OrangeWidgets/Data/OWRank.py: 15 def _toPyObject(variant): 16 val = variant.toPyObject() 17: if isinstance(val, type(NotImplemented)): 18 # PyQt 4.4 converts python int, floats ... to C types and 19 # cannot convert them back again and returns an exception instance. /orange/build/lib.linux-i686-2.6/Orange/OrangeWidgets/Unsupervised/OWSOMVisualizer.py: 824 825 def setComponentPlane(self, *args): 826: raise NotImplemented 827 828 baseColor = QColor(20,20,20) /orange/build/lib.linux-i686-2.6/Orange/classification/logreg.py: 194 # classification not implemented yet. For now its use is only to 195 # provide regression coefficients and its statistics 196: raise NotImplemented 197 198 /orange/build/lib.linux-i686-2.6/Orange/clustering/kmeans.py: 181 def score_conditional_entropy(km): 182 """UNIMPLEMENTED cluster quality measured by conditional entropy""" 183: raise NotImplemented 184 185 def score_within_cluster_distance(km): 186 """UNIMPLEMENTED weighted average within-cluster pairwise distance""" 187: raise NotImplemented 188 189 score_within_cluster_distance.minimize = True /orange/build/lib.linux-i686-2.6/Orange/data/io.py: 693 elif var_t == variable.Python: 694 # Python variables are not supported yet 695: raise NotImplementedError() 696 elif var_t is None: 697 # Unknown variable type, to be deduced at the end /orange/build/lib.linux-i686-2.6/Orange/evaluation/scoring.py: 225 scores[i][tex.iteration_number] += (float(cls) - ai)**2 226 else: # unweighted != 0 227: raise NotImplementedError, "weighted error scores with SE not implemented yet" 228 229 if argkw.get("norm-abs") or argkw.get("norm-sqr"): /orange/build/lib.linux-i686-2.6/Orange/evaluation/testing.py: 186 187 def load_from_files(self, learners, filename): 188: raise NotImplementedError("This feature is no longer supported.") 189 190 def save_to_files(self, learners, filename): 191: raise NotImplementedError("This feature is no longer supported. Pickle whole class instead.") 192 193 def create_tested_example(self, fold, example): /orange/build/lib.linux-i686-2.6/Orange/misc/collections.py: 95 96 def update(self, mapping): 97: raise NotImplementedError 98 99 def __len__(self): ... 111 112 def __delitem__(self, key): 113: raise NotImplementedError 114 115 def clear(self): 116: raise NotImplementedError 117 118 def todict(self): /orange/build/lib.linux-i686-2.6/Orange/misc/render.py: 217 218 def draw_line(self, sx, sy, ex, ey, **kwargs): 219: raise NotImplementedError 220 221 def draw_lines(self, points, **kwargs): 222: raise NotImplementedError 223 224 def draw_rect(self, x, y, w, h, **kwargs): 225: raise NotImplementedError 226 227 def draw_polygon(self, vertices, **kwargs): 228: raise NotImplementedError 229 230 def draw_arch(self, something, **kwargs): 231: raise NotImplementedError 232 233 def draw_text(self, x, y, text, **kwargs): 234: raise NotImplementedError 235 236 def string_size_hint(self, text, **kwargs): ... 251 252 def save(self, file): 253: raise NotImplementedError 254 255 def close(self, file): /orange/build/lib.linux-i686-2.6/Orange/orng/orngMisc.py: 544 545 def draw_line(self, sx, sy, ex, ey, **kwargs): 546: raise NotImplemented 547 548 def draw_lines(self, points, **kwargs): 549: raise NotImplemented 550 551 def draw_rect(self, x, y, w, h, **kwargs): 552: raise NotImplemented 553 554 def draw_polygon(self, vertices, **kwargs): 555: raise NotImplemented 556 557 def draw_arch(self, something, **kwargs): 558: raise NotImplemented 559 560 def draw_text(self, x, y, text, **kwargs): 561: raise NotImplemented 562 563 def string_size_hint(self, text, **kwargs): ... 578 579 def save(self): 580: raise NotImplemented 581 582 def close(self, file): /orange/source/orange/cls_value.cpp: 477 case Py_GE: cmp = (i>=0); break; 478 default: 479: Py_INCREF(Py_NotImplemented); 480: return Py_NotImplemented; 481 } 482 ... 510 } 511 else { 512: Py_INCREF(Py_NotImplemented); 513: return Py_NotImplemented; 514 } 515 ... 597 } 598 else { 599: Py_INCREF(Py_NotImplemented); 600: return Py_NotImplemented; 601 } 602 ... 604 } 605 606: Py_INCREF(Py_NotImplemented); 607: return Py_NotImplemented; 608 609 PyCATCH /orange/source/orange/lib_components.cpp: 4167 case Py_GE: cmp = (f>=ref); break; 4168 default: 4169: Py_INCREF(Py_NotImplemented); 4170: return Py_NotImplemented; 4171 } 4172 /orange/source/orange/vectortemplates.hpp: 357 try { 358 if (!PySequence_Check(other)) { 359: Py_INCREF(Py_NotImplemented); 360: return Py_NotImplemented; 361 } 362 ... 814 try { 815 if (!PySequence_Check(other)) { 816: Py_INCREF(Py_NotImplemented); 817: return Py_NotImplemented; 818 } 819 74 matches across 29 files Searching 3771 files for "raise NotImplemented" (case sensitive) /orange/Orange/OrangeWidgets/OWClustering.py: 856 self.span = span 857 858: raise NotImplementedError 859 860 ... 897 self.setRoot(root) 898 899: raise NotImplementedError 900 901 def set_root(self, root): /orange/Orange/OrangeWidgets/Unsupervised/OWSOMVisualizer.py: 824 825 def setComponentPlane(self, *args): 826: raise NotImplemented 827 828 baseColor = QColor(20,20,20) /orange/Orange/classification/logreg.py: 194 # classification not implemented yet. For now its use is only to 195 # provide regression coefficients and its statistics 196: raise NotImplemented 197 198 /orange/Orange/clustering/kmeans.py: 181 def score_conditional_entropy(km): 182 """UNIMPLEMENTED cluster quality measured by conditional entropy""" 183: raise NotImplemented 184 185 def score_within_cluster_distance(km): 186 """UNIMPLEMENTED weighted average within-cluster pairwise distance""" 187: raise NotImplemented 188 189 score_within_cluster_distance.minimize = True /orange/Orange/data/io.py: 693 elif var_t == variable.Python: 694 # Python variables are not supported yet 695: raise NotImplementedError() 696 elif var_t is None: 697 # Unknown variable type, to be deduced at the end /orange/Orange/evaluation/scoring.py: 225 scores[i][tex.iteration_number] += (float(cls) - ai)**2 226 else: # unweighted != 0 227: raise NotImplementedError, "weighted error scores with SE not implemented yet" 228 229 if argkw.get("norm-abs") or argkw.get("norm-sqr"): /orange/Orange/evaluation/testing.py: 186 187 def load_from_files(self, learners, filename): 188: raise NotImplementedError("This feature is no longer supported.") 189 190 def save_to_files(self, learners, filename): 191: raise NotImplementedError("This feature is no longer supported. Pickle whole class instead.") 192 193 def create_tested_example(self, fold, example): /orange/Orange/misc/collections.py: 95 96 def update(self, mapping): 97: raise NotImplementedError 98 99 def __len__(self): ... 111 112 def __delitem__(self, key): 113: raise NotImplementedError 114 115 def clear(self): 116: raise NotImplementedError 117 118 def todict(self): /orange/Orange/misc/render.py: 217 218 def draw_line(self, sx, sy, ex, ey, **kwargs): 219: raise NotImplementedError 220 221 def draw_lines(self, points, **kwargs): 222: raise NotImplementedError 223 224 def draw_rect(self, x, y, w, h, **kwargs): 225: raise NotImplementedError 226 227 def draw_polygon(self, vertices, **kwargs): 228: raise NotImplementedError 229 230 def draw_arch(self, something, **kwargs): 231: raise NotImplementedError 232 233 def draw_text(self, x, y, text, **kwargs): 234: raise NotImplementedError 235 236 def string_size_hint(self, text, **kwargs): ... 251 252 def save(self, file): 253: raise NotImplementedError 254 255 def close(self, file): /orange/Orange/orng/orngMisc.py: 544 545 def draw_line(self, sx, sy, ex, ey, **kwargs): 546: raise NotImplemented 547 548 def draw_lines(self, points, **kwargs): 549: raise NotImplemented 550 551 def draw_rect(self, x, y, w, h, **kwargs): 552: raise NotImplemented 553 554 def draw_polygon(self, vertices, **kwargs): 555: raise NotImplemented 556 557 def draw_arch(self, something, **kwargs): 558: raise NotImplemented 559 560 def draw_text(self, x, y, text, **kwargs): 561: raise NotImplemented 562 563 def string_size_hint(self, text, **kwargs): ... 578 579 def save(self): 580: raise NotImplemented 581 582 def close(self, file): /orange/build/lib.linux-i686-2.6/Orange/OrangeWidgets/OWClustering.py: 856 self.span = span 857 858: raise NotImplementedError 859 860 ... 897 self.setRoot(root) 898 899: raise NotImplementedError 900 901 def set_root(self, root): /orange/build/lib.linux-i686-2.6/Orange/OrangeWidgets/Unsupervised/OWSOMVisualizer.py: 824 825 def setComponentPlane(self, *args): 826: raise NotImplemented 827 828 baseColor = QColor(20,20,20) /orange/build/lib.linux-i686-2.6/Orange/classification/logreg.py: 194 # classification not implemented yet. For now its use is only to 195 # provide regression coefficients and its statistics 196: raise NotImplemented 197 198 /orange/build/lib.linux-i686-2.6/Orange/clustering/kmeans.py: 181 def score_conditional_entropy(km): 182 """UNIMPLEMENTED cluster quality measured by conditional entropy""" 183: raise NotImplemented 184 185 def score_within_cluster_distance(km): 186 """UNIMPLEMENTED weighted average within-cluster pairwise distance""" 187: raise NotImplemented 188 189 score_within_cluster_distance.minimize = True /orange/build/lib.linux-i686-2.6/Orange/data/io.py: 693 elif var_t == variable.Python: 694 # Python variables are not supported yet 695: raise NotImplementedError() 696 elif var_t is None: 697 # Unknown variable type, to be deduced at the end /orange/build/lib.linux-i686-2.6/Orange/evaluation/scoring.py: 225 scores[i][tex.iteration_number] += (float(cls) - ai)**2 226 else: # unweighted != 0 227: raise NotImplementedError, "weighted error scores with SE not implemented yet" 228 229 if argkw.get("norm-abs") or argkw.get("norm-sqr"): /orange/build/lib.linux-i686-2.6/Orange/evaluation/testing.py: 186 187 def load_from_files(self, learners, filename): 188: raise NotImplementedError("This feature is no longer supported.") 189 190 def save_to_files(self, learners, filename): 191: raise NotImplementedError("This feature is no longer supported. Pickle whole class instead.") 192 193 def create_tested_example(self, fold, example): /orange/build/lib.linux-i686-2.6/Orange/misc/collections.py: 95 96 def update(self, mapping): 97: raise NotImplementedError 98 99 def __len__(self): ... 111 112 def __delitem__(self, key): 113: raise NotImplementedError 114 115 def clear(self): 116: raise NotImplementedError 117 118 def todict(self): /orange/build/lib.linux-i686-2.6/Orange/misc/render.py: 217 218 def draw_line(self, sx, sy, ex, ey, **kwargs): 219: raise NotImplementedError 220 221 def draw_lines(self, points, **kwargs): 222: raise NotImplementedError 223 224 def draw_rect(self, x, y, w, h, **kwargs): 225: raise NotImplementedError 226 227 def draw_polygon(self, vertices, **kwargs): 228: raise NotImplementedError 229 230 def draw_arch(self, something, **kwargs): 231: raise NotImplementedError 232 233 def draw_text(self, x, y, text, **kwargs): 234: raise NotImplementedError 235 236 def string_size_hint(self, text, **kwargs): ... 251 252 def save(self, file): 253: raise NotImplementedError 254 255 def close(self, file): /orange/build/lib.linux-i686-2.6/Orange/orng/orngMisc.py: 544 545 def draw_line(self, sx, sy, ex, ey, **kwargs): 546: raise NotImplemented 547 548 def draw_lines(self, points, **kwargs): 549: raise NotImplemented 550 551 def draw_rect(self, x, y, w, h, **kwargs): 552: raise NotImplemented 553 554 def draw_polygon(self, vertices, **kwargs): 555: raise NotImplemented 556 557 def draw_arch(self, something, **kwargs): 558: raise NotImplemented 559 560 def draw_text(self, x, y, text, **kwargs): 561: raise NotImplemented 562 563 def string_size_hint(self, text, **kwargs): ... 578 579 def save(self): 580: raise NotImplemented 581 582 def close(self, file): 54 matches across 20 files Searching 3771 files for ""raise NotImplemented"" (case sensitive) 0 matches across 0 Searching files 3771 files for "raise NotImplemented" (case sensitive) /orange/Orange/OrangeWidgets/OWClustering.py: 856 self.span = span 857 858: raise NotImplementedError 859 860 ... 897 self.setRoot(root) 898 899: raise NotImplementedError 900 901 def set_root(self, root): /orange/Orange/OrangeWidgets/Unsupervised/OWSOMVisualizer.py: 824 825 def setComponentPlane(self, *args): 826: raise NotImplemented 827 828 baseColor = QColor(20,20,20) /orange/Orange/classification/logreg.py: 194 # classification not implemented yet. For now its use is only to 195 # provide regression coefficients and its statistics 196: raise NotImplemented 197 198 /orange/Orange/clustering/kmeans.py: 181 def score_conditional_entropy(km): 182 """UNIMPLEMENTED cluster quality measured by conditional entropy""" 183: raise NotImplemented 184 185 def score_within_cluster_distance(km): 186 """UNIMPLEMENTED weighted average within-cluster pairwise distance""" 187: raise NotImplemented 188 189 score_within_cluster_distance.minimize = True /orange/Orange/data/io.py: 693 elif var_t == variable.Python: 694 # Python variables are not supported yet 695: raise NotImplementedError() 696 elif var_t is None: 697 # Unknown variable type, to be deduced at the end /orange/Orange/evaluation/scoring.py: 225 scores[i][tex.iteration_number] += (float(cls) - ai)**2 226 else: # unweighted != 0 227: raise NotImplementedError, "weighted error scores with SE not implemented yet" 228 229 if argkw.get("norm-abs") or argkw.get("norm-sqr"): /orange/Orange/evaluation/testing.py: 186 187 def load_from_files(self, learners, filename): 188: raise NotImplementedError("This feature is no longer supported.") 189 190 def save_to_files(self, learners, filename): 191: raise NotImplementedError("This feature is no longer supported. Pickle whole class instead.") 192 193 def create_tested_example(self, fold, example): /orange/Orange/misc/collections.py: 95 96 def update(self, mapping): 97: raise NotImplementedError 98 99 def __len__(self): ... 111 112 def __delitem__(self, key): 113: raise NotImplementedError 114 115 def clear(self): 116: raise NotImplementedError 117 118 def todict(self): /orange/Orange/misc/render.py: 217 218 def draw_line(self, sx, sy, ex, ey, **kwargs): 219: raise NotImplementedError 220 221 def draw_lines(self, points, **kwargs): 222: raise NotImplementedError 223 224 def draw_rect(self, x, y, w, h, **kwargs): 225: raise NotImplementedError 226 227 def draw_polygon(self, vertices, **kwargs): 228: raise NotImplementedError 229 230 def draw_arch(self, something, **kwargs): 231: raise NotImplementedError 232 233 def draw_text(self, x, y, text, **kwargs): 234: raise NotImplementedError 235 236 def string_size_hint(self, text, **kwargs): ... 251 252 def save(self, file): 253: raise NotImplementedError 254 255 def close(self, file): /orange/Orange/orng/orngMisc.py: 544 545 def draw_line(self, sx, sy, ex, ey, **kwargs): 546: raise NotImplemented 547 548 def draw_lines(self, points, **kwargs): 549: raise NotImplemented 550 551 def draw_rect(self, x, y, w, h, **kwargs): 552: raise NotImplemented 553 554 def draw_polygon(self, vertices, **kwargs): 555: raise NotImplemented 556 557 def draw_arch(self, something, **kwargs): 558: raise NotImplemented 559 560 def draw_text(self, x, y, text, **kwargs): 561: raise NotImplemented 562 563 def string_size_hint(self, text, **kwargs): ... 578 579 def save(self): 580: raise NotImplemented 581 582 def close(self, file): /orange/build/lib.linux-i686-2.6/Orange/OrangeWidgets/OWClustering.py: 856 self.span = span 857 858: raise NotImplementedError 859 860 ... 897 self.setRoot(root) 898 899: raise NotImplementedError 900 901 def set_root(self, root): /orange/build/lib.linux-i686-2.6/Orange/OrangeWidgets/Unsupervised/OWSOMVisualizer.py: 824 825 def setComponentPlane(self, *args): 826: raise NotImplemented 827 828 baseColor = QColor(20,20,20) /orange/build/lib.linux-i686-2.6/Orange/classification/logreg.py: 194 # classification not implemented yet. For now its use is only to 195 # provide regression coefficients and its statistics 196: raise NotImplemented 197 198 /orange/build/lib.linux-i686-2.6/Orange/clustering/kmeans.py: 181 def score_conditional_entropy(km): 182 """UNIMPLEMENTED cluster quality measured by conditional entropy""" 183: raise NotImplemented 184 185 def score_within_cluster_distance(km): 186 """UNIMPLEMENTED weighted average within-cluster pairwise distance""" 187: raise NotImplemented 188 189 score_within_cluster_distance.minimize = True /orange/build/lib.linux-i686-2.6/Orange/data/io.py: 693 elif var_t == variable.Python: 694 # Python variables are not supported yet 695: raise NotImplementedError() 696 elif var_t is None: 697 # Unknown variable type, to be deduced at the end /orange/build/lib.linux-i686-2.6/Orange/evaluation/scoring.py: 225 scores[i][tex.iteration_number] += (float(cls) - ai)**2 226 else: # unweighted != 0 227: raise NotImplementedError, "weighted error scores with SE not implemented yet" 228 229 if argkw.get("norm-abs") or argkw.get("norm-sqr"): /orange/build/lib.linux-i686-2.6/Orange/evaluation/testing.py: 186 187 def load_from_files(self, learners, filename): 188: raise NotImplementedError("This feature is no longer supported.") 189 190 def save_to_files(self, learners, filename): 191: raise NotImplementedError("This feature is no longer supported. Pickle whole class instead.") 192 193 def create_tested_example(self, fold, example): /orange/build/lib.linux-i686-2.6/Orange/misc/collections.py: 95 96 def update(self, mapping): 97: raise NotImplementedError 98 99 def __len__(self): ... 111 112 def __delitem__(self, key): 113: raise NotImplementedError 114 115 def clear(self): 116: raise NotImplementedError 117 118 def todict(self): /orange/build/lib.linux-i686-2.6/Orange/misc/render.py: 217 218 def draw_line(self, sx, sy, ex, ey, **kwargs): 219: raise NotImplementedError 220 221 def draw_lines(self, points, **kwargs): 222: raise NotImplementedError 223 224 def draw_rect(self, x, y, w, h, **kwargs): 225: raise NotImplementedError 226 227 def draw_polygon(self, vertices, **kwargs): 228: raise NotImplementedError 229 230 def draw_arch(self, something, **kwargs): 231: raise NotImplementedError 232 233 def draw_text(self, x, y, text, **kwargs): 234: raise NotImplementedError 235 236 def string_size_hint(self, text, **kwargs): ... 251 252 def save(self, file): 253: raise NotImplementedError 254 255 def close(self, file): /orange/build/lib.linux-i686-2.6/Orange/orng/orngMisc.py: 544 545 def draw_line(self, sx, sy, ex, ey, **kwargs): 546: raise NotImplemented 547 548 def draw_lines(self, points, **kwargs): 549: raise NotImplemented 550 551 def draw_rect(self, x, y, w, h, **kwargs): 552: raise NotImplemented 553 554 def draw_polygon(self, vertices, **kwargs): 555: raise NotImplemented 556 557 def draw_arch(self, something, **kwargs): 558: raise NotImplemented 559 560 def draw_text(self, x, y, text, **kwargs): 561: raise NotImplemented 562 563 def string_size_hint(self, text, **kwargs): ... 578 579 def save(self): 580: raise NotImplemented 581 582 def close(self, file): 54 matches across 20 files