OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
hps
/
faces
/
faces
/
lib
/
python3.10
/
site-packages
/
numpy
/
distutils
/
command
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/26/2024 01:28:14 PM
rwxr-xr-x
📄
__init__.py
1.01 KB
10/26/2024 01:28:13 PM
rw-r--r--
📁
__pycache__
-
10/26/2024 01:29:25 PM
rwxr-xr-x
📄
autodist.py
3.63 KB
10/26/2024 01:28:13 PM
rw-r--r--
📄
bdist_rpm.py
709 bytes
10/26/2024 01:28:13 PM
rw-r--r--
📄
build.py
2.55 KB
10/26/2024 01:28:13 PM
rw-r--r--
📄
build_clib.py
18.78 KB
10/26/2024 01:28:13 PM
rw-r--r--
📄
build_ext.py
31.49 KB
10/26/2024 01:28:13 PM
rw-r--r--
📄
build_py.py
1.12 KB
10/26/2024 01:28:13 PM
rw-r--r--
📄
build_scripts.py
1.63 KB
10/26/2024 01:28:13 PM
rw-r--r--
📄
build_src.py
30.44 KB
10/26/2024 01:28:13 PM
rw-r--r--
📄
config.py
20.19 KB
10/26/2024 01:28:13 PM
rw-r--r--
📄
config_compiler.py
4.27 KB
10/26/2024 01:28:13 PM
rw-r--r--
📄
develop.py
575 bytes
10/26/2024 01:28:13 PM
rw-r--r--
📄
egg_info.py
921 bytes
10/26/2024 01:28:13 PM
rw-r--r--
📄
install.py
3.01 KB
10/26/2024 01:28:13 PM
rw-r--r--
📄
install_clib.py
1.37 KB
10/26/2024 01:28:13 PM
rw-r--r--
📄
install_data.py
848 bytes
10/26/2024 01:28:13 PM
rw-r--r--
📄
install_headers.py
919 bytes
10/26/2024 01:28:13 PM
rw-r--r--
📄
sdist.py
733 bytes
10/26/2024 01:28:13 PM
rw-r--r--
Editing: __init__.py
Close
"""distutils.command Package containing implementation of all the standard Distutils commands. """ def test_na_writable_attributes_deletion(): a = np.NA(2) attr = ['payload', 'dtype'] for s in attr: assert_raises(AttributeError, delattr, a, s) __revision__ = "$Id: __init__.py,v 1.3 2005/05/16 11:08:49 pearu Exp $" distutils_all = [ #'build_py', 'clean', 'install_clib', 'install_scripts', 'bdist', 'bdist_dumb', 'bdist_wininst', ] __import__('distutils.command', globals(), locals(), distutils_all) __all__ = ['build', 'config_compiler', 'config', 'build_src', 'build_py', 'build_ext', 'build_clib', 'build_scripts', 'install', 'install_data', 'install_headers', 'install_lib', 'bdist_rpm', 'sdist', ] + distutils_all