aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-10-14 15:49:20 -0400
committerJason R. Coombs <jaraco@jaraco.com>2016-10-14 15:49:20 -0400
commite704747721609fcb25267041292c14493751b61c (patch)
tree2bf6970c456d2260fbcaa2143dcd67c41f6774b8 /setuptools/command
parent36bcc35f0cf0d99d20fe9610f4001c513d851cfd (diff)
downloadexternal_python_setuptools-e704747721609fcb25267041292c14493751b61c.tar.gz
external_python_setuptools-e704747721609fcb25267041292c14493751b61c.tar.bz2
external_python_setuptools-e704747721609fcb25267041292c14493751b61c.zip
Update doctest to pass
Diffstat (limited to 'setuptools/command')
-rw-r--r--setuptools/command/py36compat.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/py36compat.py b/setuptools/command/py36compat.py
index 883221da..def5906a 100644
--- a/setuptools/command/py36compat.py
+++ b/setuptools/command/py36compat.py
@@ -39,9 +39,9 @@ class sdist_add_defaults:
"""
Case-sensitive path existence check
- >>> sdist._cs_path_exists(__file__)
+ >>> sdist_add_defaults._cs_path_exists(__file__)
True
- >>> sdist._cs_path_exists(__file__.upper())
+ >>> sdist_add_defaults._cs_path_exists(__file__.upper())
False
"""
if not os.path.exists(fspath):