mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
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
This commit is contained in:
parent
5364b5cd75
commit
53f7a7c281
39 changed files with 71 additions and 71 deletions
|
|
@ -1569,7 +1569,7 @@ class TestGetattrStatic(unittest.TestCase):
|
|||
foo.__dict__['d'] = 1
|
||||
self.assertEqual(inspect.getattr_static(foo, 'd'), 1)
|
||||
|
||||
# if the descriptor is a data-desciptor we should return the
|
||||
# if the descriptor is a data-descriptor we should return the
|
||||
# descriptor
|
||||
descriptor.__set__ = lambda s, i, v: None
|
||||
self.assertEqual(inspect.getattr_static(foo, 'd'), Foo.__dict__['d'])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue