Skip to content

Commit 3f18011

Browse files
HTsuyoshitrekhleb
andauthored
Change some typos, words and improve reading (#56)
* style(test_generators.py): change i for _ in loop * style(test_multiple_inheritance.py): better identation * style(test_function_arbitraty_arguments.py): fix typo * style(test_class_and_instance_variables.py): fix comment * style(test_class_and_instance_variables.py): fix typo Co-authored-by: Oleksii Trekhleb <[email protected]>
1 parent 2891f4b commit 3f18011

4 files changed

+5
-5
lines changed

src/additions/test_generators.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def lottery():
2323
"""
2424
# returns first 3 random numbers between 1 and 10
2525
# pylint: disable=unused-variable
26-
for i in range(3):
26+
for _ in range(3):
2727
yield random.randint(1, 10)
2828

2929
# returns a 4th number between 10 and 20

src/classes/test_class_and_instance_variables.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def __init__(self, name):
7272
def add_trick(self, trick):
7373
"""Add trick to the dog
7474
75-
This function illustrate mistaken use of mutable class variable tricks (see below).
75+
This function illustrate a correct use of mutable class variable tricks (see below).
7676
"""
7777
self.tricks.append(trick)
7878

src/classes/test_multiple_inheritance.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ def get_date(self):
4141
class CalendarClock(Clock, Calendar):
4242
"""Class that uses multiple inheritance.
4343
44-
For most purposes, in the simplest cases, you can think of the search for attributes i
45-
nherited from a parent class as depth-first, left-to-right, not searching twice in the same
44+
For most purposes, in the simplest cases, you can think of the search for attributes
45+
inherited from a parent class as depth-first, left-to-right, not searching twice in the same
4646
class where there is an overlap in the hierarchy. Thus, if an attribute is not found in
4747
CalendarClock, it is searched for in Clock, then (recursively) in the base classes of
4848
Clock, and if it was not found there, it was searched for in Calendar, and so on.

src/functions/test_function_arbitrary_arguments.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def test_function_arbitrary_arguments():
1616
# containing the positional arguments beyond the formal parameter list.
1717
# (*name must occur before **name.) For example, if we define a function like this:
1818
def test_function(first_param, *arguments):
19-
"""This function accepts its arguments through "arguments" tuple amd keywords dictionary."""
19+
"""This function accepts its arguments through "arguments" tuple and keywords dictionary."""
2020
assert first_param == 'first param'
2121
assert arguments == ('second param', 'third param')
2222

0 commit comments

Comments
 (0)