diff options
| author | Carsten Klein <trancesilken@gmail.com> | 2018-08-17 14:58:35 +0200 |
|---|---|---|
| committer | Paul Ganssle <pganssle@users.noreply.github.com> | 2018-08-17 08:58:35 -0400 |
| commit | 0254a2fda8e8bd4f289d01e2179191e936517f04 (patch) | |
| tree | 6007c5bc0b659c4d69ffbcc8df917f7a0c747cdf /setuptools/__init__.py | |
| parent | bbf99b7e599766e15dc56f58f68fe6c32c972faf (diff) | |
| download | python-setuptools-git-0254a2fda8e8bd4f289d01e2179191e936517f04.tar.gz | |
Rename find_namepaces_ns to find_namespace_packages (#1423)
* fix #1419 PEP420: add find_namespace: directive
* fix #1419 PEP420: add find_namespace: directive to documentation
* fix #1419 PEP420: add tests
* fix #1419 PEP420: clean up code
* fix #1419 PEP420: fix typo in documentation
* fix #1419 PEP420: fix typo in documentation
* fix #1419 PEP420: clean up code
* fix #1419 PEP420: add changelog entry
* fixup! fix #1419 PEP420: add tests
* fix #1419 PEP420: cleanup code refactor markers
* #1420: Rename find_namespace_ns to find_namespace_packages
* #1420: update changelog entry
Diffstat (limited to 'setuptools/__init__.py')
| -rw-r--r-- | setuptools/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/__init__.py b/setuptools/__init__.py index e705f0d1..54309b57 100644 --- a/setuptools/__init__.py +++ b/setuptools/__init__.py @@ -26,7 +26,7 @@ __all__ = [ ] if PY3: - __all__.append('find_packages_ns') + __all__.append('find_namespace_packages') __version__ = setuptools.version.__version__ @@ -118,7 +118,7 @@ class PEP420PackageFinder(PackageFinder): find_packages = PackageFinder.find if PY3: - find_packages_ns = PEP420PackageFinder.find + find_namespace_packages = PEP420PackageFinder.find def _install_setup_requires(attrs): |
