Skip to content

Commit d65091a

Browse files
authored
Merge pull request #159 from kurtmckee/spellcheck
Run the repo through the `typos` spell checker
2 parents dc6f843 + 7128aa8 commit d65091a

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ which, of course, can be nested:
222222
Functions
223223
---------
224224

225-
You can define functions which you'd like the expresssions to have access to:
225+
You can define functions which you'd like the expressions to have access to:
226226

227227
.. code-block:: pycon
228228
@@ -339,7 +339,7 @@ cases):
339339
# and so on...
340340
341341
One useful feature of using the ``SimpleEval`` object is that you can parse an expression
342-
once, and then evaluate it mulitple times using different ``names``:
342+
once, and then evaluate it multiple times using different ``names``:
343343

344344
.. code-block:: python
345345

simpleeval.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129
]
130130

131131
# 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,
133133
# if DISALLOW_PREFIXES and DISALLOW_METHODS are all right. This is here to try and help
134134
# people not be stupid. Allowing these functions opens up all sorts of holes - if any of
135135
# 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
254254
"""limit the number of times an iterable can be repeated..."""
255255

256256
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.")
258258
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.")
260260

261261
return a * b
262262

@@ -424,7 +424,7 @@ def parse(expr):
424424
return parsed.body[0]
425425

426426
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
428428
names previously set up."""
429429

430430
# set a copy of the expression aside, so we can give nice errors...
@@ -763,6 +763,6 @@ def do_generator(gi=0):
763763

764764

765765
def simple_eval(expr, operators=None, functions=None, names=None):
766-
"""Simply evaluate an expresssion"""
766+
"""Simply evaluate an expression"""
767767
s = SimpleEval(operators=operators, functions=functions, names=names)
768768
return s.eval(expr)

test_simpleeval.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ def setUp(self):
3939
"""initialize a SimpleEval"""
4040
self.s = SimpleEval()
4141

42-
def t(self, expr, shouldbe): # pylint: disable=invalid-name
42+
def t(self, expr, should_be): # pylint: disable=invalid-name
4343
"""test an evaluation of an expression against an expected answer"""
44-
return self.assertEqual(self.s.eval(expr), shouldbe)
44+
return self.assertEqual(self.s.eval(expr), should_be)
4545

4646

4747
class TestBasic(DRYTest):
@@ -207,7 +207,7 @@ def test_empty_string_not_allowed(self):
207207
class TestEvaluator(DRYTest):
208208
"""Tests for how the SimpleEval class does things"""
209209

210-
def test_only_evalutate_first_statement(self):
210+
def test_only_evaluate_first_statement(self):
211211
# it only evaluates the first statement:
212212
with warnings.catch_warnings(record=True) as ws:
213213
warnings.simplefilter("always")
@@ -1027,7 +1027,7 @@ def test_no_whitespace(self):
10271027
def test_trailing(self):
10281028
self.t("200 + 200 ", 400)
10291029

1030-
def test_preciding_whitespace(self):
1030+
def test_preceding_whitespace(self):
10311031
self.t(" 200 + 200", 400)
10321032

10331033
def test_preceding_tab_whitespace(self):
@@ -1284,7 +1284,7 @@ class Foo:
12841284
def bar(self):
12851285
yield "Hello, world!"
12861286

1287-
# Test the genertor does work - also adds the `yield` to codecov...
1287+
# Test the generator does work - also adds the `yield` to codecov...
12881288
assert list(Foo().bar()) == ["Hello, world!"]
12891289

12901290
evil = "foo.bar().gi_frame.f_globals['__builtins__'].exec('raise RuntimeError(\"Oh no\")')"

0 commit comments

Comments
 (0)