|
129 | 129 | ]
|
130 | 130 |
|
131 | 131 | # Disallow functions:
|
132 |
| -# This, strictly speaking, is not necessary. These /should/ never be accessable anyway, |
| 132 | +# This, strictly speaking, is not necessary. These /should/ never be accessible anyway, |
133 | 133 | # if DISALLOW_PREFIXES and DISALLOW_METHODS are all right. This is here to try and help
|
134 | 134 | # people not be stupid. Allowing these functions opens up all sorts of holes - if any of
|
135 | 135 | # their functionality is required, then please wrap them up in a safe container. And think
|
@@ -254,9 +254,9 @@ def safe_mult(a, b): # pylint: disable=invalid-name
|
254 | 254 | """limit the number of times an iterable can be repeated..."""
|
255 | 255 |
|
256 | 256 | if hasattr(a, "__len__") and b * len(a) > MAX_STRING_LENGTH:
|
257 |
| - raise IterableTooLong("Sorry, I will not evalute something that long.") |
| 257 | + raise IterableTooLong("Sorry, I will not evaluate something that long.") |
258 | 258 | if hasattr(b, "__len__") and a * len(b) > MAX_STRING_LENGTH:
|
259 |
| - raise IterableTooLong("Sorry, I will not evalute something that long.") |
| 259 | + raise IterableTooLong("Sorry, I will not evaluate something that long.") |
260 | 260 |
|
261 | 261 | return a * b
|
262 | 262 |
|
@@ -424,7 +424,7 @@ def parse(expr):
|
424 | 424 | return parsed.body[0]
|
425 | 425 |
|
426 | 426 | def eval(self, expr, previously_parsed=None):
|
427 |
| - """evaluate an expresssion, using the operators, functions and |
| 427 | + """evaluate an expression, using the operators, functions and |
428 | 428 | names previously set up."""
|
429 | 429 |
|
430 | 430 | # set a copy of the expression aside, so we can give nice errors...
|
@@ -763,6 +763,6 @@ def do_generator(gi=0):
|
763 | 763 |
|
764 | 764 |
|
765 | 765 | def simple_eval(expr, operators=None, functions=None, names=None):
|
766 |
| - """Simply evaluate an expresssion""" |
| 766 | + """Simply evaluate an expression""" |
767 | 767 | s = SimpleEval(operators=operators, functions=functions, names=names)
|
768 | 768 | return s.eval(expr)
|
0 commit comments