summaryrefslogtreecommitdiff
path: root/Lib/distutils/command/install.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-11-17 12:56:29 +0200
committerEzio Melotti <ezio.melotti@gmail.com>2012-11-17 12:56:29 +0200
commit29b67bd25a1b781749bea5e22e80dcbe41f05dec (patch)
tree6b8cb29b82b6890ac5f98c25fdf45878e9cd86fb /Lib/distutils/command/install.py
parentb5477a0109194b7c8500037e063bfd29dca03391 (diff)
parent444b8a182b5a690fdb3e4d28ca8a61de27949178 (diff)
downloadcpython-29b67bd25a1b781749bea5e22e80dcbe41f05dec.tar.gz
Merge updates about dir() with 3.3.
Diffstat (limited to 'Lib/distutils/command/install.py')
-rw-r--r--Lib/distutils/command/install.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py
index 0161898f49..04326a1731 100644
--- a/Lib/distutils/command/install.py
+++ b/Lib/distutils/command/install.py
@@ -58,13 +58,6 @@ INSTALL_SCHEMES = {
'data' : '$base',
},
'nt': WINDOWS_SCHEME,
- 'os2': {
- 'purelib': '$base/Lib/site-packages',
- 'platlib': '$base/Lib/site-packages',
- 'headers': '$base/Include/$dist_name',
- 'scripts': '$base/Scripts',
- 'data' : '$base',
- },
}
# user site schemes
@@ -86,14 +79,6 @@ if HAS_USER_SITE:
'data' : '$userbase',
}
- INSTALL_SCHEMES['os2_home'] = {
- 'purelib': '$usersite',
- 'platlib': '$usersite',
- 'headers': '$userbase/include/python$py_version_short/$dist_name',
- 'scripts': '$userbase/bin',
- 'data' : '$userbase',
- }
-
# The keys to an installation scheme; if any new types of files are to be
# installed, be sure to add an entry to every installation scheme above,
# and to SCHEME_KEYS here.