コード例 #1
0
 def __check_active_index(self):
     if self.__active_index is self:
         raise _lv.BuilderError("No active index.")
コード例 #2
0
 def __check_active_table(self):
     if self.__active_table is None:
         raise _lv.BuilderError("No active table.")
コード例 #3
0
ファイル: update_table.py プロジェクト: Python3pkg/LowVoltage
 def __check_active_index(self):
     if self.__active_index is self or self.__active_index._verb != "Create":
         raise _lv.BuilderError(
             "No active index or active index not being created.")