bpo-32297: Few misspellings found in Python source code comments. (#4803)
* Fix multiple typos in code comments
* Add spacing in comments (test_logging.py, test_math.py)
* Fix spaces at the beginning of comments in test_logging.py
diff --git a/Lib/test/test_baseexception.py b/Lib/test/test_baseexception.py
index c055ee3..c324682 100644
--- a/Lib/test/test_baseexception.py
+++ b/Lib/test/test_baseexception.py
@@ -163,7 +163,7 @@
self.raise_fails("spam")
def test_catch_non_BaseException(self):
- # Tryinng to catch an object that does not inherit from BaseException
+ # Trying to catch an object that does not inherit from BaseException
# is not allowed.
class NonBaseException(object):
pass