]> granicus.if.org Git - python/commitdiff
Fix typo in test_api.py. (GH-16119)
authorBenjamin Peterson <benjamin@python.org>
Fri, 13 Sep 2019 17:27:59 +0000 (18:27 +0100)
committerGitHub <noreply@github.com>
Fri, 13 Sep 2019 17:27:59 +0000 (18:27 +0100)
Lib/test/test_importlib/test_api.py

index edb745c2cd49ba8244928c57831051f687777096..0fb1346f9eec8f5a50116d434871a38cd1909c8d 100644 (file)
@@ -363,7 +363,7 @@ class ReloadTests:
 
     def test_module_missing_spec(self):
         #Test that reload() throws ModuleNotFounderror when reloading
-        # a module who's missing a spec. (bpo-29851)
+        # a module whose missing a spec. (bpo-29851)
         name = 'spam'
         with test_util.uncache(name):
             module = sys.modules[name] = types.ModuleType(name)