content stringlengths 1 103k ⌀ | path stringlengths 8 216 | filename stringlengths 2 179 | language stringclasses 15
values | size_bytes int64 2 189k | quality_score float64 0.5 0.95 | complexity float64 0 1 | documentation_ratio float64 0 1 | repository stringclasses 5
values | stars int64 0 1k | created_date stringdate 2023-07-10 19:21:08 2025-07-09 19:11:45 | license stringclasses 4
values | is_test bool 2
classes | file_hash stringlengths 32 32 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
#cython: language_level=3\n\n"""\nFunctions in this module give python-space wrappers for cython functions\nexposed in numpy/__init__.pxd, so they can be tested in test_cython.py\n"""\ncimport numpy as cnp\ncnp.import_array()\n\n\ndef is_td64(obj):\n return cnp.is_timedelta64_object(obj)\n\n\ndef is_dt64(obj):\n ... | .venv\Lib\site-packages\numpy\_core\tests\examples\cython\checks.pyx | checks.pyx | Other | 11,147 | 0.95 | 0.174263 | 0.057971 | react-lib | 468 | 2025-01-04T08:31:00.497379 | GPL-3.0 | true | 01ff46d049785fc6a727f392036eceed |
project('checks', 'c', 'cython')\n\npy = import('python').find_installation(pure: false)\n\ncc = meson.get_compiler('c')\ncy = meson.get_compiler('cython')\n\n# Keep synced with pyproject.toml\nif not cy.version().version_compare('>=3.0.6')\n error('tests requires Cython >= 3.0.6')\nendif\n\ncython_args = []\nif cy.ve... | .venv\Lib\site-packages\numpy\_core\tests\examples\cython\meson.build | meson.build | Other | 1,311 | 0.95 | 0.046512 | 0.114286 | python-kit | 425 | 2024-09-10T12:06:52.996785 | MIT | true | 0d4862e3e14e4cd5dc5c53a7329dd13a |
"""\nProvide python-space access to the functions exposed in numpy/__init__.pxd\nfor testing.\n"""\n\nimport os\nfrom distutils.core import setup\n\nimport Cython\nfrom Cython.Build import cythonize\nfrom setuptools.extension import Extension\n\nimport numpy as np\nfrom numpy._utils import _pep440\n\nmacros = [\n ("... | .venv\Lib\site-packages\numpy\_core\tests\examples\cython\setup.py | setup.py | Python | 898 | 0.95 | 0.051282 | 0.032258 | awesome-app | 827 | 2024-05-05T16:45:10.881953 | GPL-3.0 | true | 9400c54d4453b76ba0411219d313c6bb |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\examples\cython\__pycache__\setup.cpython-313.pyc | setup.cpython-313.pyc | Other | 1,249 | 0.95 | 0.037037 | 0 | python-kit | 733 | 2023-10-18T08:59:24.329620 | GPL-3.0 | true | f1961ba78479092b4694bc3c41309fcf |
#define Py_LIMITED_API 0x03060000\n\n#include <Python.h>\n#include <numpy/arrayobject.h>\n#include <numpy/ufuncobject.h>\n\nstatic PyModuleDef moduledef = {\n .m_base = PyModuleDef_HEAD_INIT,\n .m_name = "limited_api1"\n};\n\nPyMODINIT_FUNC PyInit_limited_api1(void)\n{\n import_array();\n import_umath();\n ... | .venv\Lib\site-packages\numpy\_core\tests\examples\limited_api\limited_api1.c | limited_api1.c | C | 363 | 0.95 | 0 | 0.285714 | react-lib | 388 | 2024-06-17T07:16:17.385288 | Apache-2.0 | true | 377b5f02c99f6268aba0736696058d43 |
#cython: language_level=3\n\n"""\nMake sure cython can compile in limited API mode (see meson.build)\n"""\n\ncdef extern from "numpy/arrayobject.h":\n pass\ncdef extern from "numpy/arrayscalars.h":\n pass\n\n | .venv\Lib\site-packages\numpy\_core\tests\examples\limited_api\limited_api2.pyx | limited_api2.pyx | Other | 214 | 0.95 | 0 | 0.125 | awesome-app | 242 | 2025-04-30T22:27:45.224214 | MIT | true | 1d109c26b441898df3b77c8fb62809bf |
#if Py_LIMITED_API != PY_VERSION_HEX & 0xffff0000\n # error "Py_LIMITED_API not defined to Python major+minor version"\n#endif\n\n#include <Python.h>\n#include <numpy/arrayobject.h>\n#include <numpy/ufuncobject.h>\n\nstatic PyModuleDef moduledef = {\n .m_base = PyModuleDef_HEAD_INIT,\n .m_name = "limited_api_l... | .venv\Lib\site-packages\numpy\_core\tests\examples\limited_api\limited_api_latest.c | limited_api_latest.c | C | 471 | 0.95 | 0.052632 | 0.375 | vue-tools | 682 | 2024-06-06T07:40:54.797152 | BSD-3-Clause | true | 6e9cb8408e8e91f959d355a243abd248 |
project('checks', 'c', 'cython')\n\npy = import('python').find_installation(pure: false)\n\ncc = meson.get_compiler('c')\ncy = meson.get_compiler('cython')\n\n# Keep synced with pyproject.toml\nif not cy.version().version_compare('>=3.0.6')\n error('tests requires Cython >= 3.0.6')\nendif\n\nnpy_include_path = run_com... | .venv\Lib\site-packages\numpy\_core\tests\examples\limited_api\meson.build | meson.build | Other | 1,686 | 0.95 | 0.016949 | 0.08 | node-utils | 478 | 2024-02-28T17:48:37.114793 | Apache-2.0 | true | 624772fe404f5da082001f15fbafea70 |
"""\nBuild an example package using the limited Python C API.\n"""\n\nimport os\n\nfrom setuptools import Extension, setup\n\nimport numpy as np\n\nmacros = [("NPY_NO_DEPRECATED_API", 0), ("Py_LIMITED_API", "0x03060000")]\n\nlimited_api = Extension(\n "limited_api",\n sources=[os.path.join('.', "limited_api.c")],... | .venv\Lib\site-packages\numpy\_core\tests\examples\limited_api\setup.py | setup.py | Python | 461 | 0.85 | 0 | 0 | vue-tools | 621 | 2023-08-07T03:17:58.449609 | Apache-2.0 | true | 322da87d3d4776e2c8483d92e3225e8f |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\examples\limited_api\__pycache__\setup.cpython-313.pyc | setup.cpython-313.pyc | Other | 797 | 0.8 | 0 | 0 | awesome-app | 703 | 2024-08-11T18:59:34.349264 | BSD-3-Clause | true | 33f920f29083547989763f540f3efad9 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_abc.cpython-313.pyc | test_abc.cpython-313.pyc | Other | 4,537 | 0.95 | 0 | 0 | react-lib | 959 | 2025-02-18T11:54:21.002486 | MIT | true | 62406243895ad1a8147bc5a0ccc85e89 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_api.cpython-313.pyc | test_api.cpython-313.pyc | Other | 39,100 | 0.8 | 0 | 0 | vue-tools | 133 | 2023-12-08T00:31:24.685048 | GPL-3.0 | true | 2ee3a617e8ce02bf140a23b053f3f977 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_argparse.cpython-313.pyc | test_argparse.cpython-313.pyc | Other | 5,178 | 0.95 | 0.065789 | 0 | react-lib | 728 | 2024-08-03T17:54:45.959930 | GPL-3.0 | true | 2a3595f827a5cf224589c89e4cd16ddf |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_arraymethod.cpython-313.pyc | test_arraymethod.cpython-313.pyc | Other | 5,136 | 0.8 | 0 | 0 | awesome-app | 919 | 2024-01-16T11:18:30.289407 | Apache-2.0 | true | 7251ad13fa33988e529bcbaedf3fcca8 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_arrayobject.cpython-313.pyc | test_arrayobject.cpython-313.pyc | Other | 4,274 | 0.8 | 0 | 0.036364 | python-kit | 146 | 2024-11-23T02:44:33.573031 | BSD-3-Clause | true | b939d599fabdd06fc6560957e763d070 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_arrayprint.cpython-313.pyc | test_arrayprint.cpython-313.pyc | Other | 73,813 | 0.75 | 0.007463 | 0.007886 | awesome-app | 187 | 2023-07-21T12:31:58.422368 | Apache-2.0 | true | 3fcb709100679252f8c1c2577326a036 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_array_api_info.cpython-313.pyc | test_array_api_info.cpython-313.pyc | Other | 6,008 | 0.8 | 0 | 0 | awesome-app | 921 | 2024-04-09T21:25:59.572683 | Apache-2.0 | true | 51b7a0f2b6ac2c5f1abcb2290acebde8 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_array_coercion.cpython-313.pyc | test_array_coercion.cpython-313.pyc | Other | 52,507 | 0.95 | 0.013487 | 0.028 | awesome-app | 696 | 2024-10-02T22:44:20.551417 | Apache-2.0 | true | 54e55ec30c7f6224df582e428a06f281 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_array_interface.cpython-313.pyc | test_array_interface.cpython-313.pyc | Other | 8,290 | 0.95 | 0.05 | 0.125926 | react-lib | 545 | 2024-12-16T07:29:57.589072 | Apache-2.0 | true | 79de9324d1b43ea7bc5b90ff0369a86a |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_casting_floatingpoint_errors.cpython-313.pyc | test_casting_floatingpoint_errors.cpython-313.pyc | Other | 9,130 | 0.8 | 0.00885 | 0.038462 | python-kit | 163 | 2025-06-10T03:02:57.344083 | Apache-2.0 | true | b1bcaac0ee1ea06a763ece10fbcb4e58 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_casting_unittests.cpython-313.pyc | test_casting_unittests.cpython-313.pyc | Other | 39,565 | 0.8 | 0.010676 | 0.00369 | node-utils | 578 | 2025-06-29T17:12:49.520102 | BSD-3-Clause | true | 209662f85b85f417c1284dc4eebb3b71 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_conversion_utils.cpython-313.pyc | test_conversion_utils.cpython-313.pyc | Other | 13,352 | 0.8 | 0.017544 | 0.00885 | node-utils | 410 | 2024-01-01T00:40:21.151697 | Apache-2.0 | true | c56c28035135e6aa63646d08ad311f2b |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_cpu_dispatcher.cpython-313.pyc | test_cpu_dispatcher.cpython-313.pyc | Other | 1,583 | 0.7 | 0 | 0 | python-kit | 419 | 2024-05-01T03:21:33.424541 | BSD-3-Clause | true | 38d9838ef7b5f89c87685dc0c324ab8c |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_cpu_features.cpython-313.pyc | test_cpu_features.cpython-313.pyc | Other | 20,676 | 0.95 | 0.066667 | 0.029412 | vue-tools | 164 | 2025-06-02T11:21:46.466728 | MIT | true | e00b9a267edd59e826f1fe76cb042ab0 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_custom_dtypes.cpython-313.pyc | test_custom_dtypes.cpython-313.pyc | Other | 21,286 | 0.8 | 0.006579 | 0 | python-kit | 814 | 2024-02-10T12:52:06.418177 | BSD-3-Clause | true | 6b963451404f3ac92e00829d2483425d |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_cython.cpython-313.pyc | test_cython.cpython-313.pyc | Other | 19,220 | 0.95 | 0.008333 | 0 | python-kit | 896 | 2024-06-04T16:37:21.336517 | MIT | true | e893a60675dda664b18deb7a85dd38e0 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_defchararray.cpython-313.pyc | test_defchararray.cpython-313.pyc | Other | 64,773 | 0.75 | 0.010929 | 0.00838 | python-kit | 465 | 2024-10-29T21:13:10.538725 | MIT | true | 7e3e38d6ef44a753035d2f204efb7c89 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_deprecations.cpython-313.pyc | test_deprecations.cpython-313.pyc | Other | 31,107 | 0.95 | 0.083333 | 0.008299 | awesome-app | 134 | 2024-06-16T18:55:47.644831 | MIT | true | 3aaebf5b8baa723c074fb7c3cd4e234d |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_dlpack.cpython-313.pyc | test_dlpack.cpython-313.pyc | Other | 13,111 | 0.8 | 0 | 0 | awesome-app | 30 | 2025-05-17T11:04:11.505805 | Apache-2.0 | true | ffc4a52001fa14ac258f27bcd276a5a4 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_einsum.cpython-313.pyc | test_einsum.cpython-313.pyc | Other | 77,090 | 0.75 | 0.016129 | 0.00409 | awesome-app | 577 | 2023-10-21T06:19:19.704858 | Apache-2.0 | true | 32a882d978adf6db38967ba058ef2488 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_errstate.cpython-313.pyc | test_errstate.cpython-313.pyc | Other | 8,758 | 0.95 | 0 | 0.010753 | awesome-app | 124 | 2024-09-29T21:26:59.288276 | BSD-3-Clause | true | 49a1498b1880e001c391cd1589b27125 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_extint128.cpython-313.pyc | test_extint128.cpython-313.pyc | Other | 10,311 | 0.8 | 0.010204 | 0 | react-lib | 479 | 2024-03-09T13:01:29.127105 | BSD-3-Clause | true | 7bb7795ea9f107ca99348fb16aa3ae81 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_function_base.cpython-313.pyc | test_function_base.cpython-313.pyc | Other | 28,907 | 0.95 | 0 | 0.011765 | awesome-app | 530 | 2023-09-09T20:53:24.152653 | BSD-3-Clause | true | 3b3bb0859747293dda2e0dda198eb230 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_getlimits.cpython-313.pyc | test_getlimits.cpython-313.pyc | Other | 14,144 | 0.95 | 0.009434 | 0.1 | awesome-app | 401 | 2024-02-13T17:35:57.782087 | BSD-3-Clause | true | 6183575ff641d5d26c9a9c7a13ca5085 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_half.cpython-313.pyc | test_half.cpython-313.pyc | Other | 37,283 | 0.95 | 0.004367 | 0.026667 | react-lib | 202 | 2023-12-29T12:02:07.675178 | MIT | true | 89ff930e134e47e8f8d081d4b7517687 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_hashtable.cpython-313.pyc | test_hashtable.cpython-313.pyc | Other | 1,747 | 0.8 | 0 | 0 | vue-tools | 14 | 2024-10-05T13:02:07.921189 | Apache-2.0 | true | 1efd41bb2ef4ee5940515e4f744490e5 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_indexerrors.cpython-313.pyc | test_indexerrors.cpython-313.pyc | Other | 11,580 | 0.8 | 0.02381 | 0 | vue-tools | 280 | 2024-03-14T02:03:23.732800 | Apache-2.0 | true | 651b4f148f57d702d82a97181eea58ab |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_indexing.cpython-313.pyc | test_indexing.cpython-313.pyc | Other | 84,506 | 0.75 | 0.01676 | 0.011765 | react-lib | 294 | 2025-06-21T20:39:05.512631 | Apache-2.0 | true | b10931e5f3fffb682fc043080b361fa5 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_item_selection.cpython-313.pyc | test_item_selection.cpython-313.pyc | Other | 10,622 | 0.8 | 0 | 0 | vue-tools | 150 | 2024-01-16T18:37:55.293741 | GPL-3.0 | true | 05e7f4c3d30b11c9a03f9cc9ba0df458 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_limited_api.cpython-313.pyc | test_limited_api.cpython-313.pyc | Other | 4,706 | 0.95 | 0.019231 | 0 | vue-tools | 164 | 2024-11-14T21:02:34.846858 | GPL-3.0 | true | 5901e5e1dac40153a0264e3bda21ceda |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_longdouble.cpython-313.pyc | test_longdouble.cpython-313.pyc | Other | 23,313 | 0.8 | 0.004098 | 0.012931 | node-utils | 801 | 2024-03-13T12:25:54.252839 | BSD-3-Clause | true | 224cf74d57aaa62bc1c6a1e3e045397b |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_machar.cpython-313.pyc | test_machar.cpython-313.pyc | Other | 1,824 | 0.8 | 0 | 0.130435 | python-kit | 284 | 2024-06-23T21:55:41.997619 | BSD-3-Clause | true | 9bbbc403317dabe248d301b4dc42be75 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_memmap.cpython-313.pyc | test_memmap.cpython-313.pyc | Other | 14,524 | 0.8 | 0 | 0 | awesome-app | 943 | 2024-03-20T16:04:44.234750 | BSD-3-Clause | true | 507c80e887859def7f7490c371fcb225 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_mem_overlap.cpython-313.pyc | test_mem_overlap.cpython-313.pyc | Other | 47,965 | 0.95 | 0 | 0.008571 | python-kit | 200 | 2023-09-21T19:40:22.805582 | Apache-2.0 | true | 705293fb6382caa333a58b0116acb9c5 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_mem_policy.cpython-313.pyc | test_mem_policy.cpython-313.pyc | Other | 20,210 | 0.95 | 0.066421 | 0.053435 | node-utils | 662 | 2023-11-23T05:03:06.230452 | Apache-2.0 | true | 25ae94b6712faff07838bb13f8501a4f |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_multithreading.cpython-313.pyc | test_multithreading.cpython-313.pyc | Other | 14,899 | 0.95 | 0.005376 | 0.018293 | python-kit | 432 | 2024-04-10T12:02:24.065479 | MIT | true | 3b8931cdc7e521f1710e217363e9e0c2 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_nep50_promotions.cpython-313.pyc | test_nep50_promotions.cpython-313.pyc | Other | 17,977 | 0.8 | 0.008929 | 0 | awesome-app | 990 | 2024-10-11T05:59:38.535194 | BSD-3-Clause | true | f84e313305292d121975b4006e96ab15 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_numerictypes.cpython-313.pyc | test_numerictypes.cpython-313.pyc | Other | 42,360 | 0.8 | 0 | 0 | awesome-app | 865 | 2025-05-11T01:23:44.919087 | GPL-3.0 | true | 14c0c14dac51c67d00cf4e2b62592ca1 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_overrides.cpython-313.pyc | test_overrides.cpython-313.pyc | Other | 52,468 | 0.95 | 0.010959 | 0.01662 | python-kit | 176 | 2024-10-21T14:09:17.465588 | BSD-3-Clause | true | b858a7b01548d95c93f78aaebd47ccc2 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_print.cpython-313.pyc | test_print.cpython-313.pyc | Other | 11,504 | 0.95 | 0.088 | 0.008696 | python-kit | 965 | 2025-03-31T06:33:07.002465 | Apache-2.0 | true | 534dac6c872202dec0b972b6ef0a7faa |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_protocols.cpython-313.pyc | test_protocols.cpython-313.pyc | Other | 3,341 | 0.8 | 0 | 0 | python-kit | 549 | 2025-03-11T20:01:48.939591 | BSD-3-Clause | true | cf76642b90613c323dd7eb48fd89edd1 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_records.cpython-313.pyc | test_records.cpython-313.pyc | Other | 39,392 | 0.8 | 0 | 0.007299 | awesome-app | 500 | 2024-12-21T17:37:39.849631 | BSD-3-Clause | true | bd4825a101a14a20d27429484eb2cd21 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_scalarbuffer.cpython-313.pyc | test_scalarbuffer.cpython-313.pyc | Other | 9,490 | 0.8 | 0 | 0 | python-kit | 730 | 2024-08-26T03:01:41.435184 | MIT | true | 6e10e6b3fa7a06c6b83821c42056335e |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_scalarinherit.cpython-313.pyc | test_scalarinherit.cpython-313.pyc | Other | 6,501 | 0.8 | 0.015152 | 0 | node-utils | 882 | 2024-09-15T08:55:02.033584 | GPL-3.0 | true | 448aed4de6ec491738111b429f708c0d |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_scalarmath.cpython-313.pyc | test_scalarmath.cpython-313.pyc | Other | 73,989 | 0.75 | 0.003226 | 0.006885 | python-kit | 345 | 2023-12-18T12:05:54.401318 | MIT | true | d67b9090cb972cd0b3a0999ac76fa35a |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_scalarprint.cpython-313.pyc | test_scalarprint.cpython-313.pyc | Other | 21,043 | 0.8 | 0.008621 | 0.026549 | python-kit | 828 | 2025-02-08T18:43:49.534021 | Apache-2.0 | true | ac7f8a9797d7e98af1f80a88c42d3da5 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_scalar_ctors.cpython-313.pyc | test_scalar_ctors.cpython-313.pyc | Other | 14,187 | 0.8 | 0 | 0.013072 | awesome-app | 28 | 2024-08-20T12:17:15.265457 | GPL-3.0 | true | ccb986ae44794947543b1ccffdf3ad64 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_scalar_methods.cpython-313.pyc | test_scalar_methods.cpython-313.pyc | Other | 17,455 | 0.8 | 0.006329 | 0 | awesome-app | 766 | 2025-05-01T21:03:28.299669 | BSD-3-Clause | true | 063f5fcdb1d5dc61d2a447cc39ab0730 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_shape_base.cpython-313.pyc | test_shape_base.cpython-313.pyc | Other | 50,232 | 0.95 | 0.009434 | 0 | vue-tools | 758 | 2023-08-23T08:46:57.468654 | Apache-2.0 | true | 2160c3a00fcdb2cc3438ec1f6bfa6bd0 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_simd.cpython-313.pyc | test_simd.cpython-313.pyc | Other | 69,284 | 0.75 | 0.0067 | 0.006932 | python-kit | 933 | 2024-10-18T10:06:05.736810 | GPL-3.0 | true | 0170747702911f493157573392a96295 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_simd_module.cpython-313.pyc | test_simd_module.cpython-313.pyc | Other | 7,176 | 0.8 | 0 | 0.017241 | node-utils | 101 | 2025-03-26T00:16:33.971953 | MIT | true | 437d6ff5a87818ee0bf243d2e00af682 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_stringdtype.cpython-313.pyc | test_stringdtype.cpython-313.pyc | Other | 93,037 | 0.75 | 0.006289 | 0.013106 | vue-tools | 320 | 2023-10-02T06:43:19.959372 | Apache-2.0 | true | d7d8c785f21e9018b4f84da2b897840f |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_strings.cpython-313.pyc | test_strings.cpython-313.pyc | Other | 84,328 | 0.75 | 0.012066 | 0.010938 | react-lib | 710 | 2024-07-22T14:20:47.660920 | Apache-2.0 | true | 86737cc004114e9cc28aa9cb7a294e6e |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_umath_accuracy.cpython-313.pyc | test_umath_accuracy.cpython-313.pyc | Other | 8,750 | 0.8 | 0.011765 | 0.011905 | python-kit | 48 | 2025-07-05T19:22:30.719409 | Apache-2.0 | true | 3b1106abc4076f21fa8639d8cee8e5f4 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_umath_complex.cpython-313.pyc | test_umath_complex.cpython-313.pyc | Other | 43,153 | 0.95 | 0 | 0.02583 | python-kit | 112 | 2025-01-23T12:06:28.918660 | GPL-3.0 | true | c02524272a83146e321f83da97d0bb60 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test_unicode.cpython-313.pyc | test_unicode.cpython-313.pyc | Other | 19,314 | 0.8 | 0 | 0 | react-lib | 559 | 2025-03-14T16:32:45.308656 | Apache-2.0 | true | 04743090e60fc3745ad02565b6a4986d |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\test__exceptions.cpython-313.pyc | test__exceptions.cpython-313.pyc | Other | 5,633 | 0.8 | 0.034483 | 0 | react-lib | 458 | 2025-03-24T01:36:40.230505 | GPL-3.0 | true | 8816e61a4ba02838ebc71ffe4630b3e8 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\_locales.cpython-313.pyc | _locales.cpython-313.pyc | Other | 3,559 | 0.95 | 0.117647 | 0 | react-lib | 296 | 2024-02-25T10:25:36.490685 | GPL-3.0 | true | e4d846c03c26177eadf54289722b9180 |
\n\n | .venv\Lib\site-packages\numpy\_core\tests\__pycache__\_natype.cpython-313.pyc | _natype.cpython-313.pyc | Other | 8,432 | 0.8 | 0.010101 | 0.072165 | vue-tools | 298 | 2024-11-05T10:09:05.706608 | MIT | true | 53e1f5a092ef7aafdb1322698c820004 |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\arrayprint.cpython-313.pyc | arrayprint.cpython-313.pyc | Other | 70,202 | 0.75 | 0.066038 | 0.016913 | vue-tools | 495 | 2024-01-24T00:42:49.543472 | BSD-3-Clause | false | 548929a8feee0bf6c5b95402bff86836 |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\cversions.cpython-313.pyc | cversions.cpython-313.pyc | Other | 632 | 0.7 | 0 | 0 | react-lib | 517 | 2023-10-22T15:02:47.357455 | MIT | false | 054a0e8e49b0d93ea2176ba1da1f4bfc |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\defchararray.cpython-313.pyc | defchararray.cpython-313.pyc | Other | 37,864 | 0.95 | 0.05486 | 0 | vue-tools | 289 | 2025-02-09T15:40:00.178781 | BSD-3-Clause | false | 30b5a655c069c3e377bb1ad0c60efa8e |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\einsumfunc.cpython-313.pyc | einsumfunc.cpython-313.pyc | Other | 47,820 | 0.95 | 0.037525 | 0.03107 | python-kit | 817 | 2024-07-27T08:59:08.388731 | BSD-3-Clause | false | 15f6f8d4f92dba68a1dda77e2f815ec8 |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\function_base.cpython-313.pyc | function_base.cpython-313.pyc | Other | 19,755 | 0.95 | 0.038462 | 0 | react-lib | 91 | 2025-07-04T11:28:36.687289 | GPL-3.0 | false | 93f6f710b6c1475cd7ef2a28a6ff9811 |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\getlimits.cpython-313.pyc | getlimits.cpython-313.pyc | Other | 27,695 | 0.95 | 0.100239 | 0.002667 | awesome-app | 630 | 2024-12-14T07:33:18.941842 | MIT | false | 4b15007e2ac74b71ffe9b755b9108b8a |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\memmap.cpython-313.pyc | memmap.cpython-313.pyc | Other | 12,886 | 0.95 | 0.034221 | 0 | node-utils | 733 | 2025-01-27T16:35:32.997667 | BSD-3-Clause | false | 40b9b65308b69e62ecb2c1124fb063c2 |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\multiarray.cpython-313.pyc | multiarray.cpython-313.pyc | Other | 53,655 | 0.75 | 0.045854 | 0.014243 | vue-tools | 682 | 2024-04-29T07:48:04.174185 | BSD-3-Clause | false | 340c0f0bd19447def7237591b94d42f7 |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\numeric.cpython-313.pyc | numeric.cpython-313.pyc | Other | 84,865 | 0.75 | 0.047319 | 0.005319 | python-kit | 974 | 2024-08-18T22:34:08.078176 | Apache-2.0 | false | 701adc7b523a17358048cc160c97d23d |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\numerictypes.cpython-313.pyc | numerictypes.cpython-313.pyc | Other | 16,937 | 0.95 | 0.070248 | 0.019802 | vue-tools | 787 | 2024-02-17T15:11:21.906076 | GPL-3.0 | false | f334312d55a615646b61d32da8f6b195 |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\overrides.cpython-313.pyc | overrides.cpython-313.pyc | Other | 7,846 | 0.95 | 0.243697 | 0.009434 | node-utils | 491 | 2024-02-07T13:38:45.967927 | Apache-2.0 | false | 9eb403f198dca661a426dbf5a8b4ae75 |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\printoptions.cpython-313.pyc | printoptions.cpython-313.pyc | Other | 933 | 0.85 | 0.066667 | 0 | vue-tools | 299 | 2024-03-29T06:54:24.078302 | MIT | false | 1a503dad918675c33e57d8706b4c9fc6 |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\records.cpython-313.pyc | records.cpython-313.pyc | Other | 38,547 | 0.95 | 0.054264 | 0.005164 | node-utils | 438 | 2024-06-23T06:06:34.937356 | MIT | false | e894e3ab054b561ba29476d250f65d4b |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\shape_base.cpython-313.pyc | shape_base.cpython-313.pyc | Other | 32,489 | 0.95 | 0.038926 | 0.009756 | react-lib | 920 | 2023-08-11T01:51:40.073035 | GPL-3.0 | false | 6cc4230a950efcb5f96ae98c0f3c094d |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\strings.cpython-313.pyc | strings.cpython-313.pyc | Other | 56,233 | 0.75 | 0.016727 | 0.008977 | awesome-app | 574 | 2024-08-14T06:04:59.191177 | BSD-3-Clause | false | 458d93d98a67ff9fc8d34adbc6063e6d |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\umath.cpython-313.pyc | umath.cpython-313.pyc | Other | 2,008 | 0.85 | 0.034483 | 0 | node-utils | 88 | 2023-08-02T08:31:17.047482 | Apache-2.0 | false | 3bf77abb3fd67b9620395abb371fdfaf |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\_add_newdocs_scalars.cpython-313.pyc | _add_newdocs_scalars.cpython-313.pyc | Other | 13,236 | 0.95 | 0.051852 | 0 | react-lib | 202 | 2023-12-13T22:19:45.051877 | MIT | false | a47da916caadbe091e7195a31522908e |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\_asarray.cpython-313.pyc | _asarray.cpython-313.pyc | Other | 4,071 | 0.85 | 0.040404 | 0.069767 | python-kit | 368 | 2025-04-01T17:28:58.879916 | GPL-3.0 | false | 711d0e8e2b8b0c30f6b1e12dc1aff02c |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\_dtype.cpython-313.pyc | _dtype.cpython-313.pyc | Other | 13,450 | 0.95 | 0.043478 | 0 | python-kit | 148 | 2025-06-23T14:29:37.898615 | BSD-3-Clause | false | bdac1491ef267a0f4c57bb3552ff95aa |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\_dtype_ctypes.cpython-313.pyc | _dtype_ctypes.cpython-313.pyc | Other | 4,876 | 0.95 | 0.047619 | 0.113208 | node-utils | 954 | 2024-09-16T08:38:32.159240 | BSD-3-Clause | false | 24888797afb8271ff437ce77a483ba9e |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\_exceptions.cpython-313.pyc | _exceptions.cpython-313.pyc | Other | 8,485 | 0.95 | 0.068182 | 0 | python-kit | 145 | 2025-05-06T01:26:13.339805 | BSD-3-Clause | false | 18f34b5f16ef72a2b7c11412ef3631a2 |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\_internal.cpython-313.pyc | _internal.cpython-313.pyc | Other | 34,762 | 0.95 | 0.040506 | 0.002865 | node-utils | 357 | 2024-02-03T00:24:25.640315 | BSD-3-Clause | false | 49a4166ad2aadb70e89906fe9d4ffdb6 |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\_machar.cpython-313.pyc | _machar.cpython-313.pyc | Other | 11,635 | 0.95 | 0.050505 | 0 | node-utils | 169 | 2023-08-19T19:26:05.710546 | GPL-3.0 | false | 2b8e7dd01db0e57fd8b5bfc8485b831a |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\_methods.cpython-313.pyc | _methods.cpython-313.pyc | Other | 11,400 | 0.95 | 0.031008 | 0 | vue-tools | 439 | 2024-12-04T17:12:15.126589 | MIT | false | a26f67f58e04314aaf12dada002ee51c |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\_string_helpers.cpython-313.pyc | _string_helpers.cpython-313.pyc | Other | 3,077 | 0.95 | 0.035294 | 0 | react-lib | 227 | 2025-05-15T21:03:54.681690 | MIT | false | 054e7e136f7abb0be696698333ddf83d |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\_type_aliases.cpython-313.pyc | _type_aliases.cpython-313.pyc | Other | 3,791 | 0.8 | 0.016949 | 0.019231 | vue-tools | 99 | 2025-01-24T17:10:23.105444 | BSD-3-Clause | false | 151a63d1310d06a9854df5448542aee1 |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\_ufunc_config.cpython-313.pyc | _ufunc_config.cpython-313.pyc | Other | 15,538 | 0.95 | 0.071429 | 0 | python-kit | 208 | 2024-09-09T08:25:27.754779 | BSD-3-Clause | false | 0e4e11ee02eeacdc834e286c8207860e |
\n\n | .venv\Lib\site-packages\numpy\_core\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 5,705 | 0.95 | 0.022989 | 0.027397 | react-lib | 424 | 2023-10-01T00:09:40.432897 | GPL-3.0 | false | ab24c2a608aa6fe8c181b86e2a9087fa |
"""This hook should collect all binary files and any hidden modules that numpy\nneeds.\n\nOur (some-what inadequate) docs for writing PyInstaller hooks are kept here:\nhttps://pyinstaller.readthedocs.io/en/stable/hooks.html\n\n"""\nfrom PyInstaller.compat import is_pure_conda\nfrom PyInstaller.utils.hooks import collec... | .venv\Lib\site-packages\numpy\_pyinstaller\hook-numpy.py | hook-numpy.py | Python | 1,398 | 0.95 | 0.055556 | 0.333333 | vue-tools | 834 | 2025-05-30T12:54:00.695994 | MIT | false | 071baa1eb7c91d6b080f7cd987ccf738 |
from typing import Final\n\n# from `PyInstaller.compat`\nis_conda: Final[bool]\nis_pure_conda: Final[bool]\n\n# from `PyInstaller.utils.hooks`\ndef is_module_satisfies(requirements: str, version: None = None, version_attr: None = None) -> bool: ...\n\nbinaries: Final[list[tuple[str, str]]]\n\nhiddenimports: Final[list[... | .venv\Lib\site-packages\numpy\_pyinstaller\hook-numpy.pyi | hook-numpy.pyi | Other | 362 | 0.95 | 0.076923 | 0.222222 | vue-tools | 895 | 2023-08-12T16:06:40.129058 | BSD-3-Clause | false | 37d5f58cd9066444169646225d76cb4d |
"""A crude *bit of everything* smoke test to verify PyInstaller compatibility.\n\nPyInstaller typically goes wrong by forgetting to package modules, extension\nmodules or shared libraries. This script should aim to touch as many of those\nas possible in an attempt to trip a ModuleNotFoundError or a DLL load failure\ndu... | .venv\Lib\site-packages\numpy\_pyinstaller\tests\pyinstaller-smoke.py | pyinstaller-smoke.py | Python | 1,175 | 0.85 | 0 | 0 | node-utils | 253 | 2023-08-16T03:33:25.995177 | MIT | true | a3f669ddbb9af32a30f63e0957915b42 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.