aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authortarek <none@none>2009-09-27 20:38:59 +0200
committertarek <none@none>2009-09-27 20:38:59 +0200
commit93663d98ca27e93e6ed76eb85d4753b630623834 (patch)
tree53c1a06ef2ba5b764f44cba958c54dae73171a6a /setup.py
parent7964e7bcb02c1ad2e5c92be71db53a1f9a66cf6d (diff)
downloadexternal_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-xsetup.py8
1 files changed, 4 insertions, 4 deletions
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)