Esempio n. 1
0
def parse_options_set_short_length(*args) -> "void" :
  return _clinkgrammar.parse_options_set_short_length(*args)
def parse_options_set_short_length(*args):
  return _clinkgrammar.parse_options_set_short_length(*args)
Esempio n. 3
0
 def fset(self, value):
     if not isinstance(value, int):
         raise TypeError("short_length must be set to an integer")
     if value < 0:
         raise ValueError("short_length must be positive")
     clg.parse_options_set_short_length(self._po, value)
Esempio n. 4
0
 def fset(self, value):
     if not isinstance(value, int):
         raise TypeError("short_length must be set to an integer")
     if value < 0:
         raise ValueError("short_length must be positive")
     clg.parse_options_set_short_length(self._po, value)
Esempio n. 5
0
def parse_options_set_short_length(opts, short_length):
    return _clinkgrammar.parse_options_set_short_length(opts, short_length)
Esempio n. 6
0
def parse_options_set_short_length(opts: 'Parse_Options',
                                   short_length: 'int') -> "void":
    return _clinkgrammar.parse_options_set_short_length(opts, short_length)