Esempio n. 1
0
def parse_options_set_max_null_count(*args) -> "void" :
  return _clinkgrammar.parse_options_set_max_null_count(*args)
def parse_options_set_max_null_count(*args):
  return _clinkgrammar.parse_options_set_max_null_count(*args)
Esempio n. 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)
Esempio n. 4
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)
Esempio n. 5
0
def parse_options_set_max_null_count(opts, null_count):
    return _clinkgrammar.parse_options_set_max_null_count(opts, null_count)
Esempio n. 6
0
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)