コード例 #1
0
ファイル: clinkgrammar.py プロジェクト: ggosline/taxonparser
def parse_options_set_max_null_count(*args) -> "void" :
  return _clinkgrammar.parse_options_set_max_null_count(*args)
コード例 #2
0
def parse_options_set_max_null_count(*args):
  return _clinkgrammar.parse_options_set_max_null_count(*args)
コード例 #3
0
 def fset(self, value):
     if not isinstance(value, int):
         raise TypeError("max_null_count must be set to an integer")
     if value < 0:
         raise ValueError("max_null_count must be positive")
     clg.parse_options_set_max_null_count(self._po, value)
コード例 #4
0
ファイル: linkgrammar.py プロジェクト: lagleki/jorne
 def fset(self, value):
     if not isinstance(value, int):
         raise TypeError("max_null_count must be set to an integer")
     if value < 0:
         raise ValueError("max_null_count must be positive")
     clg.parse_options_set_max_null_count(self._po, value)
コード例 #5
0
def parse_options_set_max_null_count(opts, null_count):
    return _clinkgrammar.parse_options_set_max_null_count(opts, null_count)
コード例 #6
0
ファイル: clinkgrammar.py プロジェクト: raschild6/relex
def parse_options_set_max_null_count(opts: 'Parse_Options',
                                     null_count: 'int') -> "void":
    return _clinkgrammar.parse_options_set_max_null_count(opts, null_count)