Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion raiden/utils/profiling/sampler.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def __init__(self, stack_stream: IO) -> None:
# function call. This is important for functions which are considerably
# slower then the others.
#
# Because from whithin the interpreter it's not possible to execute a
# Because from within the interpreter it's not possible to execute a
# function on stable intervals, the count of stacks does not correspond
# to actual wall time. This is true even if posix signals are used. For
# this reason the code has to account for the time spent between two
Expand Down
2 changes: 1 addition & 1 deletion tools/pylint/gevent_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def is_gevent_wait(inferred_func):


def is_group_join(inferred_func):
# This intetionally does not check the class, as of gevent 1.5a3 it matches
# This intentionally does not check the class, as of gevent 1.5a3 it matches
# Group and Pool, which are the classes that need to be checked.
return (
inferred_func.name == "join"
Expand Down