mirror of
https://github.com/python/cpython.git
synced 2026-01-03 14:02:21 +00:00
* 'build_dir' -> 'build_lib', which by default takes its value
straight from 'build_lib' in the 'build' command
* added 'build_temp' and 'inplace' options
* change 'build_extensions()' to put object files (compiler turds) in
'build_temp' dir
* complicated the name-of-extension-file shenanigans in
'build_extensions()' to support "in-place" extension building, i.e.
put the extension right into the source tree (handy for developers)
* added 'get_ext_fullname()', renamed 'extension_filename()' to
'get_ext_filename()', and tweaked the latter a bit -- all to support
the new filename shenanigans
|
||
|---|---|---|
| .. | ||
| __init__.py | ||
| build.py | ||
| build_clib.py | ||
| build_ext.py | ||
| build_lib.py | ||
| build_py.py | ||
| install.py | ||
| install_ext.py | ||
| install_lib.py | ||
| install_py.py | ||
| sdist.py | ||