Lines Matching refs:value
182 key, value = line.split("=")
187 value = value.strip()
188 if value in ["True", "False", "None", "''", '""']:
189 value = eval(value)
192 if "." in value:
193 value = float(value)
195 value = int(value)
197 pass # value need not be converted
198 cfgdict[key] = value
205 read it from there. If this contains an importconfig-value,
248 |a| absolute value of a
296 for key, value in cls.__dict__.items():
297 if type(value) == types.FunctionType:
298 _dict[key] = value
506 top is a boolean value, which specifies if polyitem
536 top is a boolean value, which specifies if polyitem
834 default: default value
835 minval: minimum value for input
836 maxval: maximum value for input
1255 Second arguments sets delay value (see RawTurtle.delay())
1572 of 'degrees' for a full circle. Default value is
2053 corresponding to the value of pensize.
2145 Set the turtle's speed to an integer value in the range 0 .. 10.
2190 to the given value.
2346 with the following key/value pairs:
2681 Second arguments sets delay value (see RawTurtle.delay())
3122 stampid - an integer, must be return value of previous stamp() call.
3537 """Set delay value which determines speed of turtle animation.
3792 If "using_IDLE" - value in configuration dictionary is False
3793 (default value), enter mainloop.
3794 If IDLE with -n switch (no subprocess) is used, this value should be
3843 default value is turtle_docstringdict
3917 defaults = ["=%r" % (value,) for value in defaults]