diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-10-14 15:49:20 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-10-14 15:49:20 -0400 |
commit | e704747721609fcb25267041292c14493751b61c (patch) | |
tree | 2bf6970c456d2260fbcaa2143dcd67c41f6774b8 /setuptools/command | |
parent | 36bcc35f0cf0d99d20fe9610f4001c513d851cfd (diff) | |
download | external_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.py | 4 |
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): |