]> granicus.if.org Git - python/commitdiff
bpo-29836: Remove nturl2path from test_sundry and amend the module docstring (GH...
authorJim Fasarakis-Hilliard <d.f.hilliard@gmail.com>
Fri, 17 Mar 2017 18:16:20 +0000 (20:16 +0200)
committerBrett Cannon <brettcannon@users.noreply.github.com>
Fri, 17 Mar 2017 18:16:20 +0000 (11:16 -0700)
The module is implicitly tested through test_urllib.

Lib/nturl2path.py
Lib/test/test_sundry.py

index 36dc7658870e9695f5864246d54a5ceef8133d67..853e6608380e92da93581c2a39cb1460b93bb9c7 100644 (file)
@@ -1,4 +1,9 @@
-"""Convert a NT pathname to a file URL and vice versa."""
+"""Convert a NT pathname to a file URL and vice versa.
+
+This module only exists to provide OS-specific code
+for urllib.requests, thus do not use directly.
+"""
+# Testing is done through test_urllib.
 
 def url2pathname(url):
     """OS-specific conversion from a relative URL of the 'file' scheme
index 1fb996469821b359c75f24f599b7660e1b1e516d..dddf3265525af2986f46fa9e05da029003569582 100644 (file)
@@ -6,8 +6,7 @@ import unittest
 
 class TestUntestedModules(unittest.TestCase):
     def test_untested_modules_can_be_imported(self):
-        untested = ('bdb', 'encodings', 'formatter',
-                    'nturl2path', 'tabnanny')
+        untested = ('bdb', 'encodings', 'formatter', 'tabnanny')
         with support.check_warnings(quiet=True):
             for name in untested:
                 try: