Kaydet (Commit) cb5297a9 authored tarafından Jim Fasarakis-Hilliard's avatar Jim Fasarakis-Hilliard Kaydeden (comit) Brett Cannon

bpo-29836: Remove nturl2path from test_sundry and amend the module docstring (GH-694)

The module is implicitly tested through test_urllib.
üst 1b038e07
"""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
......
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment