diff options
author | tarek <none@none> | 2009-09-27 20:38:59 +0200 |
---|---|---|
committer | tarek <none@none> | 2009-09-27 20:38:59 +0200 |
commit | 93663d98ca27e93e6ed76eb85d4753b630623834 (patch) | |
tree | 53c1a06ef2ba5b764f44cba958c54dae73171a6a /setup.py | |
parent | 7964e7bcb02c1ad2e5c92be71db53a1f9a66cf6d (diff) | |
download | external_python_setuptools-93663d98ca27e93e6ed76eb85d4753b630623834.tar.gz external_python_setuptools-93663d98ca27e93e6ed76eb85d4753b630623834.tar.bz2 external_python_setuptools-93663d98ca27e93e6ed76eb85d4753b630623834.zip |
some function don't need public exposition + fixed the os.curdir bug that was breaking use_setuptools
--HG--
branch : distribute
extra : rebase_source : 20788bf4396fabb49e7292611f1125bf2bdc2b29
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -53,8 +53,8 @@ def _being_installed(): return 'install' in sys.argv[1:] or _easy_install_marker() if _being_installed(): - from distribute_setup import before_install - before_install() + from distribute_setup import _before_install + _before_install() dist = setup( name="distribute", @@ -142,7 +142,7 @@ dist = setup( ) if _being_installed(): - from distribute_setup import after_install - after_install(dist) + from distribute_setup import _after_install + _after_install(dist) |