From 93663d98ca27e93e6ed76eb85d4753b630623834 Mon Sep 17 00:00:00 2001 From: tarek Date: Sun, 27 Sep 2009 20:38:59 +0200 Subject: some function don't need public exposition + fixed the os.curdir bug that was breaking use_setuptools --HG-- branch : distribute extra : rebase_source : 20788bf4396fabb49e7292611f1125bf2bdc2b29 --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 7f6cbdf6..fcd85eb2 100755 --- a/setup.py +++ b/setup.py @@ -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) -- cgit v1.2.1