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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
module foo_fixed\n contains\n subroutine bar12(a)\n!f2py intent(out) a\n integer a\n a = 12\n end subroutine bar12\n end module foo_fixed\n | .venv\Lib\site-packages\numpy\f2py\tests\src\mixed\foo_fixed.f90 | foo_fixed.f90 | Other | 187 | 0.7 | 0 | 0 | node-utils | 112 | 2025-03-15T15:25:26.004860 | MIT | true | e7cd34c634c4a3c9c37453e4a8ddb83f |
module foo_free\ncontains\n subroutine bar13(a)\n !f2py intent(out) a\n integer a\n a = 13\n end subroutine bar13\nend module foo_free\n | .venv\Lib\site-packages\numpy\f2py\tests\src\mixed\foo_free.f90 | foo_free.f90 | Other | 147 | 0.7 | 0 | 0 | node-utils | 330 | 2025-05-25T23:53:02.789128 | GPL-3.0 | true | e119f7f020b4c125f9b80810b46f6237 |
module mod\n integer :: i\n integer :: x(4)\n real, dimension(2,3) :: a\n real, allocatable, dimension(:,:) :: b\ncontains\n subroutine foo\n integer :: k\n k = 1\n a(1,2) = a(1,2)+3\n end subroutine foo\nend module mod\n | .venv\Lib\site-packages\numpy\f2py\tests\src\modules\module_data_docstring.f90 | module_data_docstring.f90 | Other | 236 | 0.7 | 0 | 0 | react-lib | 60 | 2024-03-12T19:43:48.324568 | BSD-3-Clause | true | a9874dcbf66a6c0e00d96486671f3262 |
module mathops\n implicit none\ncontains\n function add(a, b) result(c)\n integer, intent(in) :: a, b\n integer :: c\n c = a + b\n end function add\nend module mathops\n\nmodule useops\n use mathops, only: add\n implicit none\ncontains\n function sum_and_double(a, b) result(d)\n integer, intent(in) ::... | .venv\Lib\site-packages\numpy\f2py\tests\src\modules\use_modules.f90 | use_modules.f90 | Other | 418 | 0.85 | 0.2 | 0 | react-lib | 486 | 2024-02-19T11:31:15.427332 | Apache-2.0 | true | b8e104ee76f89d468b355118d1a761e2 |
module data\n real(8) :: shift\ncontains\n subroutine set_shift(in_shift)\n real(8), intent(in) :: in_shift\n shift = in_shift\n end subroutine set_shift\nend module data\n | .venv\Lib\site-packages\numpy\f2py\tests\src\modules\gh25337\data.f90 | data.f90 | Other | 188 | 0.7 | 0 | 0 | vue-tools | 599 | 2023-10-15T19:29:04.690058 | BSD-3-Clause | true | cd91f8907792b069c955b811df4b45c4 |
subroutine shift_a(dim_a, a)\n use data, only: shift\n integer, intent(in) :: dim_a\n real(8), intent(inout), dimension(dim_a) :: a\n a = a + shift\nend subroutine shift_a\n | .venv\Lib\site-packages\numpy\f2py\tests\src\modules\gh25337\use_data.f90 | use_data.f90 | Other | 185 | 0.7 | 0 | 0 | node-utils | 537 | 2024-03-12T03:01:41.773156 | BSD-3-Clause | true | 9d008372699d1823e7f9e6dc542c0b34 |
module mod2\n implicit none\n private mod2_func1\n contains\n\n subroutine mod2_func1()\n print*, "mod2_func1"\n end subroutine mod2_func1\n\n end module mod2\n\n module mod1\n implicit none\n private :: mod1_func1\n contains\n\n subroutine mod... | .venv\Lib\site-packages\numpy\f2py\tests\src\modules\gh26920\two_mods_with_no_public_entities.f90 | two_mods_with_no_public_entities.f90 | Other | 423 | 0.7 | 0 | 0 | node-utils | 864 | 2024-03-29T04:27:14.698073 | Apache-2.0 | true | 6dd64c5c240e586010a98da3b9d6e45f |
module mod2\n implicit none\n PUBLIC :: mod2_func1\n contains\n\n subroutine mod2_func1()\n print*, "mod2_func1"\n end subroutine mod2_func1\n\n end module mod2\n\n module mod1\n implicit none\n PUBLIC :: mod1_func1\n contains\n\n subroutine mo... | .venv\Lib\site-packages\numpy\f2py\tests\src\modules\gh26920\two_mods_with_one_public_routine.f90 | two_mods_with_one_public_routine.f90 | Other | 424 | 0.7 | 0 | 0 | node-utils | 383 | 2024-09-24T21:25:12.540817 | BSD-3-Clause | true | 1803f811026e5d9699fbcf7754a1da09 |
subroutine foo(is_, ie_, arr, tout)\n implicit none\n integer :: is_,ie_\n real, intent(in) :: arr(is_:ie_)\n real, intent(out) :: tout(is_:ie_)\n tout = arr\nend\n | .venv\Lib\site-packages\numpy\f2py\tests\src\negative_bounds\issue_20853.f90 | issue_20853.f90 | Other | 164 | 0.7 | 0 | 0 | vue-tools | 327 | 2025-03-18T22:38:07.867707 | BSD-3-Clause | true | 2ed3e40f6b9f3207561af9d7eaab0bf2 |
! Check that parameter arrays are correctly intercepted.\nsubroutine foo_array(x, y, z)\n implicit none\n integer, parameter :: dp = selected_real_kind(15)\n integer, parameter :: pa = 2\n integer, parameter :: intparamarray(2) = (/ 3, 5 /)\n integer, dimension(pa), parameter :: pb = (/ 2, 10 /)\n integer, parame... | .venv\Lib\site-packages\numpy\f2py\tests\src\parameter\constant_array.f90 | constant_array.f90 | Other | 1,513 | 0.7 | 0 | 0 | react-lib | 585 | 2024-01-26T12:29:04.000422 | MIT | true | af2437ebc457fe18e2bf05c0876b0a3a |
! Check that parameters are correct intercepted.\n! Constants with comma separations are commonly\n! used, for instance Pi = 3._dp\nsubroutine foo(x)\n implicit none\n integer, parameter :: sp = selected_real_kind(6)\n integer, parameter :: dp = selected_real_kind(15)\n integer, parameter :: ii = selected_int_kind(... | .venv\Lib\site-packages\numpy\f2py\tests\src\parameter\constant_both.f90 | constant_both.f90 | Other | 1,996 | 0.7 | 0.017544 | 0 | awesome-app | 389 | 2023-12-09T15:46:36.982857 | Apache-2.0 | true | 95c5b24a5386300090a0875ebca6f441 |
! Check that parameters are correct intercepted.\n! Constants with comma separations are commonly\n! used, for instance Pi = 3._dp\nsubroutine foo_compound_int(x)\n implicit none\n integer, parameter :: ii = selected_int_kind(9)\n integer(ii), intent(inout) :: x\n dimension x(3)\n integer(ii), parameter :: three =... | .venv\Lib\site-packages\numpy\f2py\tests\src\parameter\constant_compound.f90 | constant_compound.f90 | Other | 484 | 0.7 | 0.066667 | 0 | vue-tools | 411 | 2023-07-31T06:47:35.696419 | Apache-2.0 | true | 4ae6fb50b60c2932a301ed58266dcce6 |
! Check that parameters are correct intercepted.\n! Constants with comma separations are commonly\n! used, for instance Pi = 3._dp\nsubroutine foo_int(x)\n implicit none\n integer, parameter :: ii = selected_int_kind(9)\n integer(ii), intent(inout) :: x\n dimension x(3)\n integer(ii), parameter :: three = 3_ii\n ... | .venv\Lib\site-packages\numpy\f2py\tests\src\parameter\constant_integer.f90 | constant_integer.f90 | Other | 634 | 0.7 | 0.045455 | 0 | node-utils | 961 | 2024-09-02T10:00:37.130728 | GPL-3.0 | true | 3a8accb69335b6b7f60b20ffc2f36467 |
! Check that parameters are correct intercepted.\n! Specifically that types of constants without \n! compound kind specs are correctly inferred\n! adapted Gibbs iteration code from pymc \n! for this test case \nsubroutine foo_non_compound_int(x)\n implicit none\n integer, parameter :: ii = selected_int_kind(9)\n\n i... | .venv\Lib\site-packages\numpy\f2py\tests\src\parameter\constant_non_compound.f90 | constant_non_compound.f90 | Other | 632 | 0.7 | 0.043478 | 0 | react-lib | 189 | 2025-04-23T17:00:39.195965 | BSD-3-Clause | true | e206e26df39eb112da14f37635436b0f |
! Check that parameters are correct intercepted.\n! Constants with comma separations are commonly\n! used, for instance Pi = 3._dp\nsubroutine foo_single(x)\n implicit none\n integer, parameter :: rp = selected_real_kind(6)\n real(rp), intent(inout) :: x\n dimension x(3)\n real(rp), parameter :: three = 3._rp\n x... | .venv\Lib\site-packages\numpy\f2py\tests\src\parameter\constant_real.f90 | constant_real.f90 | Other | 633 | 0.7 | 0.043478 | 0 | vue-tools | 793 | 2024-09-01T06:10:52.295537 | BSD-3-Clause | true | addeb488799c40c3b75725661bed9df8 |
SUBROUTINE FOO(OUT1, OUT2, OUT3, OUT4, OUT5, OUT6)\n CHARACTER SINGLE, DOUBLE, SEMICOL, EXCLA, OPENPAR, CLOSEPAR\n PARAMETER (SINGLE="'", DOUBLE='"', SEMICOL=';', EXCLA="!",\n 1 OPENPAR="(", CLOSEPAR=")")\n CHARACTER OUT1, OUT2, OUT3, OUT4, OUT5, OUT6\nCf2py intent(out) OUT1, OUT2, OU... | .venv\Lib\site-packages\numpy\f2py\tests\src\quoted_character\foo.f | foo.f | Other | 496 | 0.7 | 0 | 0 | node-utils | 707 | 2023-07-27T08:57:49.132255 | Apache-2.0 | true | 13bce852e27bd7f3fd985eccbd8d9f0e |
real(8) b, n, m\n | .venv\Lib\site-packages\numpy\f2py\tests\src\regression\AB.inc | AB.inc | Other | 17 | 0.5 | 0 | 0 | react-lib | 39 | 2024-10-01T20:13:58.182338 | MIT | true | 8c44ccde801365fb2e2ab7652db7ace7 |
MODULE MOD_TYPES\n INTEGER, PARAMETER :: SP = SELECTED_REAL_KIND(6, 37)\n INTEGER, PARAMETER :: DP = SELECTED_REAL_KIND(15, 307)\n END MODULE\n!\n MODULE F_GLOBALS\n USE MOD_TYPES\n IMPLICIT NONE\n INTEGER, PARAMETER :: N_MAX = 16\n INTEGER, PARAMETER :: I_M... | .venv\Lib\site-packages\numpy\f2py\tests\src\regression\assignOnlyModule.f90 | assignOnlyModule.f90 | Other | 633 | 0.7 | 0 | 0 | react-lib | 700 | 2024-02-21T14:23:43.222287 | Apache-2.0 | true | cd6442b5bc7551308b1cb992ff8794db |
module datonly\n implicit none\n integer, parameter :: max_value = 100\n real, dimension(:), allocatable :: data_array\nend module datonly\n\nmodule dat\n implicit none\n integer, parameter :: max_= 1009\nend module dat\n\nsubroutine simple_subroutine(ain, aout)\n use dat, only: max_\n integer, intent(in) :: ain... | .venv\Lib\site-packages\numpy\f2py\tests\src\regression\datonly.f90 | datonly.f90 | Other | 409 | 0.7 | 0 | 0 | react-lib | 633 | 2024-09-12T15:37:22.659238 | BSD-3-Clause | true | 9834211b09e3445294d57bb05993086c |
SUBROUTINE TESTSUB(\n & INPUT1, INPUT2, !Input\n & OUTPUT1, OUTPUT2) !Output\n\n IMPLICIT NONE\n INTEGER, INTENT(IN) :: INPUT1, INPUT2\n INTEGER, INTENT(OUT) :: OUTPUT1, OUTPUT2\n\n OUTPUT1 = INPUT1 + INPUT2\n OUT... | .venv\Lib\site-packages\numpy\f2py\tests\src\regression\f77comments.f | f77comments.f | Other | 652 | 0.7 | 0 | 0 | awesome-app | 719 | 2025-04-29T23:26:03.247101 | Apache-2.0 | true | ca53d94f5fefc9aabd665d7d9e6e39fe |
C This is an invalid file, but it does compile with -ffixed-form\n subroutine mwe(\n & x)\n real x\n end subroutine mwe\n | .venv\Lib\site-packages\numpy\f2py\tests\src\regression\f77fixedform.f95 | f77fixedform.f95 | Other | 144 | 0.7 | 0 | 0 | awesome-app | 198 | 2023-09-25T19:07:20.257839 | GPL-3.0 | true | cc4fd3172104d50711080919f98c5412 |
SUBROUTINE TESTSUB(INPUT1, & ! Hello\n! commenty\nINPUT2, OUTPUT1, OUTPUT2) ! more comments\n INTEGER, INTENT(IN) :: INPUT1, INPUT2\n INTEGER, INTENT(OUT) :: OUTPUT1, OUTPUT2\n OUTPUT1 = INPUT1 + &\n INPUT2\n OUTPUT2 = INPUT1 * INPUT2\nEND SUBROUTINE TESTSUB\n | .venv\Lib\site-packages\numpy\f2py\tests\src\regression\f90continuation.f90 | f90continuation.f90 | Other | 285 | 0.7 | 0 | 0 | react-lib | 508 | 2024-07-03T11:00:08.733499 | GPL-3.0 | true | 5263496a757a27c7f50f309dd7cacc14 |
function add(n,m) result(b)\n implicit none\n include 'AB.inc'\n b = n + m\nend function add\n | .venv\Lib\site-packages\numpy\f2py\tests\src\regression\incfile.f90 | incfile.f90 | Other | 97 | 0.65 | 0.4 | 0 | vue-tools | 677 | 2025-02-22T18:22:03.995790 | MIT | true | 8d90a0786f13e625036e08a35ab244a5 |
! Check that intent(in out) translates as intent(inout).\n! The separation seems to be a common usage.\n subroutine foo(x)\n implicit none\n real(4), intent(in out) :: x\n dimension x(3)\n x(1) = x(1) + x(2) + x(3)\n return\n end\n | .venv\Lib\site-packages\numpy\f2py\tests\src\regression\inout.f90 | inout.f90 | Other | 286 | 0.7 | 0 | 0 | vue-tools | 73 | 2024-12-13T17:45:07.215275 | MIT | true | 29a137d8e197c940baaac5fbeb38bc30 |
subroutine inquire_next(IU)\n IMPLICIT NONE\n integer :: IU\n !f2py intent(in) IU\nend subroutine\n | .venv\Lib\site-packages\numpy\f2py\tests\src\regression\lower_f2py_fortran.f90 | lower_f2py_fortran.f90 | Other | 105 | 0.7 | 0 | 0 | node-utils | 760 | 2023-10-29T03:43:09.976213 | MIT | true | 6e96a8ba47ab164eba55bc381f44ab75 |
module mtypes\n implicit none\n integer, parameter :: value1 = 100\n type :: master_data\n integer :: idat = 200\n end type master_data\n type(master_data) :: masterdata\nend module mtypes\n\n\nsubroutine no_type_subroutine(ain, aout)\n use mtypes, only: value1\n integer, intent(in) :: ain\n integer, intent(... | .venv\Lib\site-packages\numpy\f2py\tests\src\regression\mod_derived_types.f90 | mod_derived_types.f90 | Other | 589 | 0.7 | 0 | 0 | python-kit | 259 | 2024-04-06T13:27:56.570647 | GPL-3.0 | true | 2567b2e83845139efffc628e8d520aec |
function t0(value)\n character value\n character t0\n t0 = value\n end\n function t1(value)\n character*1 value\n character*1 t1\n t1 = value\n end\n function t5(value)\n character*5 value\n character*5 t5\n t5 = valu... | .venv\Lib\site-packages\numpy\f2py\tests\src\return_character\foo77.f | foo77.f | Other | 1,025 | 0.85 | 0.088889 | 0 | python-kit | 49 | 2024-01-20T12:39:53.217218 | MIT | true | 9a88237e54de5c609f912a0e679b3a9e |
module f90_return_char\n contains\n function t0(value)\n character :: value\n character :: t0\n t0 = value\n end function t0\n function t1(value)\n character(len=1) :: value\n character(len=1) :: t1\n t1 = value\n end function t1\n function ... | .venv\Lib\site-packages\numpy\f2py\tests\src\return_character\foo90.f90 | foo90.f90 | Other | 1,296 | 0.85 | 0.166667 | 0 | vue-tools | 968 | 2024-12-07T20:25:53.374008 | BSD-3-Clause | true | 59c21d16fbffe0f2f1ff7992dfe789ea |
function t0(value)\n complex value\n complex t0\n t0 = value\n end\n function t8(value)\n complex*8 value\n complex*8 t8\n t8 = value\n end\n function t16(value)\n complex*16 value\n complex*16 t16\n t16 = value\n ... | .venv\Lib\site-packages\numpy\f2py\tests\src\return_complex\foo77.f | foo77.f | Other | 1,018 | 0.85 | 0.088889 | 0 | python-kit | 437 | 2023-12-19T07:52:34.110317 | MIT | true | 8720b53899483aa27835aab0984f74e5 |
module f90_return_complex\n contains\n function t0(value)\n complex :: value\n complex :: t0\n t0 = value\n end function t0\n function t8(value)\n complex(kind=4) :: value\n complex(kind=4) :: t8\n t8 = value\n end function t8\n function t16... | .venv\Lib\site-packages\numpy\f2py\tests\src\return_complex\foo90.f90 | foo90.f90 | Other | 1,286 | 0.85 | 0.166667 | 0 | python-kit | 105 | 2024-01-26T12:28:38.966104 | BSD-3-Clause | true | b29403bb3b8bbadc26c84873f7e0e7c0 |
function t0(value)\n integer value\n integer t0\n t0 = value\n end\n function t1(value)\n integer*1 value\n integer*1 t1\n t1 = value\n end\n function t2(value)\n integer*2 value\n integer*2 t2\n t2 = value\n en... | .venv\Lib\site-packages\numpy\f2py\tests\src\return_integer\foo77.f | foo77.f | Other | 1,234 | 0.85 | 0.089286 | 0 | node-utils | 557 | 2023-07-21T06:38:35.040818 | Apache-2.0 | true | 2b54deb28013ce2478618b3ff8a5c216 |
module f90_return_integer\n contains\n function t0(value)\n integer :: value\n integer :: t0\n t0 = value\n end function t0\n function t1(value)\n integer(kind=1) :: value\n integer(kind=1) :: t1\n t1 = value\n end function t1\n function t2(... | .venv\Lib\site-packages\numpy\f2py\tests\src\return_integer\foo90.f90 | foo90.f90 | Other | 1,590 | 0.85 | 0.169492 | 0 | vue-tools | 518 | 2025-06-04T03:02:10.392675 | BSD-3-Clause | true | a2e7bedf7b8ee80665acf75488aa2a4e |
function t0(value)\n logical value\n logical t0\n t0 = value\n end\n function t1(value)\n logical*1 value\n logical*1 t1\n t1 = value\n end\n function t2(value)\n logical*2 value\n logical*2 t2\n t2 = value\n en... | .venv\Lib\site-packages\numpy\f2py\tests\src\return_logical\foo77.f | foo77.f | Other | 1,244 | 0.85 | 0.089286 | 0 | react-lib | 702 | 2024-05-16T21:47:09.170958 | MIT | true | 503c599f4541a90e57ba121ef23e673e |
module f90_return_logical\n contains\n function t0(value)\n logical :: value\n logical :: t0\n t0 = value\n end function t0\n function t1(value)\n logical(kind=1) :: value\n logical(kind=1) :: t1\n t1 = value\n end function t1\n function t2(... | .venv\Lib\site-packages\numpy\f2py\tests\src\return_logical\foo90.f90 | foo90.f90 | Other | 1,590 | 0.85 | 0.169492 | 0 | vue-tools | 970 | 2023-08-13T04:13:44.664737 | Apache-2.0 | true | 6f4142810755a5c37dbe9b6afbdd3d97 |
function t0(value)\n real value\n real t0\n t0 = value\n end\n function t4(value)\n real*4 value\n real*4 t4\n t4 = value\n end\n function t8(value)\n real*8 value\n real*8 t8\n t8 = value\n end\n function... | .venv\Lib\site-packages\numpy\f2py\tests\src\return_real\foo77.f | foo77.f | Other | 978 | 0.85 | 0.088889 | 0 | python-kit | 990 | 2025-06-17T11:54:10.782711 | Apache-2.0 | true | 91d5386dbbfaccfe9652dcff9e4020a2 |
module f90_return_real\n contains\n function t0(value)\n real :: value\n real :: t0\n t0 = value\n end function t0\n function t4(value)\n real(kind=4) :: value\n real(kind=4) :: t4\n t4 = value\n end function t4\n function t8(value)\n ... | .venv\Lib\site-packages\numpy\f2py\tests\src\return_real\foo90.f90 | foo90.f90 | Other | 1,242 | 0.85 | 0.166667 | 0 | node-utils | 724 | 2024-01-06T00:25:57.366050 | BSD-3-Clause | true | 4b4f45768ff1eea68f30de4010abd4db |
REAL*8 FUNCTION FUNCFORTRANNAME(A,B)\n REAL*8 A, B\n FUNCFORTRANNAME = A + B\n RETURN\n END FUNCTION\n | .venv\Lib\site-packages\numpy\f2py\tests\src\routines\funcfortranname.f | funcfortranname.f | Other | 128 | 0.7 | 0 | 0 | react-lib | 59 | 2024-01-12T11:06:40.277218 | GPL-3.0 | true | 70a35388c2f87a51f9f6cd3dfd9cf009 |
python module funcfortranname ! in\n interface ! in :funcfortranname\n function funcfortranname_default(a,b) ! in :funcfortranname:funcfortranname.f\n fortranname funcfortranname\n real*8 :: a\n real*8 :: b\n real*8 :: funcfortranname_default\n real*8, i... | .venv\Lib\site-packages\numpy\f2py\tests\src\routines\funcfortranname.pyf | funcfortranname.pyf | Other | 451 | 0.85 | 0.181818 | 0 | vue-tools | 256 | 2025-06-19T00:13:22.129932 | BSD-3-Clause | true | 5e5db51a2232864bef2818b91083ba9b |
SUBROUTINE SUBROUT(A,B,C)\n REAL*8 A, B, C\n C = A + B\n END SUBROUTINE\n | .venv\Lib\site-packages\numpy\f2py\tests\src\routines\subrout.f | subrout.f | Other | 94 | 0.5 | 0 | 0 | react-lib | 670 | 2024-01-05T14:02:56.404292 | Apache-2.0 | true | 2744694a4bec5024220d242be48605eb |
python module subrout ! in\n interface ! in :subrout\n subroutine subrout_default(a,b,c) ! in :subrout:subrout.f\n fortranname subrout\n real*8 :: a\n real*8 :: b\n real*8, intent(out) :: c\n end subroutine subrout_default\n end interface\nend python modu... | .venv\Lib\site-packages\numpy\f2py\tests\src\routines\subrout.pyf | subrout.pyf | Other | 332 | 0.7 | 0 | 0 | react-lib | 447 | 2025-06-02T10:53:57.109134 | MIT | true | 9ec5885bc2ea3b848cd0ec946f706f68 |
\nsubroutine foo(a, n, m, b)\n implicit none\n\n real, intent(in) :: a(n, m)\n integer, intent(in) :: n, m\n real, intent(out) :: b(size(a, 1))\n\n integer :: i\n\n do i = 1, size(b)\n b(i) = sum(a(i,:))\n enddo\nend subroutine\n\nsubroutine trans(x,y)\n implicit none\n real, intent(in), dimension(:,:) :: x... | .venv\Lib\site-packages\numpy\f2py\tests\src\size\foo.f90 | foo.f90 | Other | 859 | 0.7 | 0 | 0 | node-utils | 171 | 2024-05-25T01:54:14.322306 | Apache-2.0 | true | 994e5442711333761bd62ff6ffe4dfee |
MODULE char_test\n\nCONTAINS\n\nSUBROUTINE change_strings(strings, n_strs, out_strings)\n IMPLICIT NONE\n\n ! Inputs\n INTEGER, INTENT(IN) :: n_strs\n CHARACTER, INTENT(IN), DIMENSION(2,n_strs) :: strings\n CHARACTER, INTENT(OUT), DIMENSION(2,n_strs) :: out_strings\n\n!f2py INTEGER, INTENT(IN) :: n_strs\... | .venv\Lib\site-packages\numpy\f2py\tests\src\string\char.f90 | char.f90 | Other | 647 | 0.7 | 0 | 0 | python-kit | 72 | 2024-03-10T04:35:59.057034 | GPL-3.0 | true | 237ccfb1cd65c9698f69c977fad06db6 |
function sint(s) result(i)\n implicit none\n character(len=*) :: s\n integer :: j, i\n i = 0\n do j=len(s), 1, -1\n if (.not.((i.eq.0).and.(s(j:j).eq.' '))) then\n i = i + ichar(s(j:j)) * 10 ** (j - 1)\n endif\n end do\n return\n end function sint\n\n function test_in_bytes4(a) result (i)\n i... | .venv\Lib\site-packages\numpy\f2py\tests\src\string\fixed_string.f90 | fixed_string.f90 | Other | 729 | 0.85 | 0.235294 | 0 | awesome-app | 697 | 2025-06-29T04:39:27.113032 | GPL-3.0 | true | 14ab206bce05312a46fd06f9f4c4de03 |
SUBROUTINE GREET(NAME, GREETING)\n CHARACTER NAME*(*), GREETING*(*)\n CHARACTER*(50) MESSAGE\n\n MESSAGE = 'Hello, ' // NAME // ', ' // GREETING\nc$$$ PRINT *, MESSAGE\n\n END SUBROUTINE GREET\n | .venv\Lib\site-packages\numpy\f2py\tests\src\string\gh24008.f | gh24008.f | Other | 225 | 0.8 | 0 | 0 | awesome-app | 591 | 2024-06-05T14:31:54.897737 | MIT | true | d7d9196189f99711c2e790a125edd316 |
subroutine string_inout_optional(output)\n implicit none\n character*(32), optional, intent(inout) :: output\n if (present(output)) then\n output="output string"\n endif\nend subroutine\n | .venv\Lib\site-packages\numpy\f2py\tests\src\string\gh24662.f90 | gh24662.f90 | Other | 204 | 0.7 | 0.142857 | 0 | react-lib | 251 | 2024-11-23T05:35:45.405839 | MIT | true | 9fdd888cb0af6ff431c4dbb3e62c7a75 |
subroutine charint(trans, info)\n character, intent(in) :: trans\n integer, intent(out) :: info\n if (trans == 'N') then\n info = 1\n else if (trans == 'T') then\n info = 2\n else if (trans == 'C') then\n info = 3\n else\n info = -1\n end if\n\nend subroutine charint\n | .venv\Lib\site-packages\numpy\f2py\tests\src\string\gh25286.f90 | gh25286.f90 | Other | 318 | 0.7 | 0.285714 | 0 | python-kit | 848 | 2025-02-04T03:15:15.056421 | Apache-2.0 | true | bf9702735b3d8183307e7d0c662028bb |
python module _char_handling_test\n interface\n subroutine charint(trans, info)\n callstatement (*f2py_func)(&trans, &info)\n callprotoargument char*, int*\n\n character, intent(in), check(trans=='N'||trans=='T'||trans=='C') :: trans = 'N'\n integer intent(out) :: info\n\n end subro... | .venv\Lib\site-packages\numpy\f2py\tests\src\string\gh25286.pyf | gh25286.pyf | Other | 393 | 0.7 | 0 | 0 | vue-tools | 68 | 2024-02-24T09:17:24.947143 | GPL-3.0 | true | b8f4b4a31a5973c3e38276275da16e45 |
python module _char_handling_test\n interface\n subroutine charint(trans, info)\n callstatement (*f2py_func)(&trans, &info)\n callprotoargument char*, int*\n\n character, intent(in), check(*trans=='N'||*trans=='T'||*trans=='C') :: trans = 'N'\n integer intent(out) :: info\n\n end su... | .venv\Lib\site-packages\numpy\f2py\tests\src\string\gh25286_bc.pyf | gh25286_bc.pyf | Other | 396 | 0.7 | 0 | 0 | node-utils | 355 | 2024-10-28T19:20:01.776808 | MIT | true | 62b9a865f20c3b129dc24e8c06edae9a |
MODULE string_test\n\n character(len=8) :: string\n character string77 * 8\n\n character(len=12), dimension(5,7) :: strarr\n character strarr77(5,7) * 12\n\nEND MODULE string_test\n | .venv\Lib\site-packages\numpy\f2py\tests\src\string\scalar_string.f90 | scalar_string.f90 | Other | 185 | 0.7 | 0 | 0 | react-lib | 890 | 2024-09-16T08:48:12.036034 | GPL-3.0 | true | eae84f657bd6f3adc934e519c102139c |
C FILE: STRING.F\n SUBROUTINE FOO(A,B,C,D)\n CHARACTER*5 A, B\n CHARACTER*(*) C,D\nCf2py intent(in) a,c\nCf2py intent(inout) b,d\n A(1:1) = 'A'\n B(1:1) = 'B'\n C(1:1) = 'C'\n D(1:1) = 'D'\n END\nC END OF FILE STRING.F\n | .venv\Lib\site-packages\numpy\f2py\tests\src\string\string.f | string.f | Other | 260 | 0.7 | 0 | 0 | node-utils | 298 | 2024-03-21T17:11:53.049541 | GPL-3.0 | true | ca478998475513bd19ae0e6c7d06e2d5 |
module fortfuncs\n implicit none\ncontains\n subroutine square(x,y)\n integer, intent(in), value :: x\n integer, intent(out) :: y\n y = x*x\n end subroutine square\nend module fortfuncs\n | .venv\Lib\site-packages\numpy\f2py\tests\src\value_attrspec\gh21665.f90 | gh21665.f90 | Other | 199 | 0.7 | 0 | 0 | python-kit | 34 | 2024-04-01T23:13:38.259187 | MIT | true | 8c0146f7105dada2fec7e88f9c7f4b8a |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_abstract_interface.cpython-313.pyc | test_abstract_interface.cpython-313.pyc | Other | 1,995 | 0.8 | 0 | 0 | react-lib | 323 | 2024-05-11T19:18:50.946120 | GPL-3.0 | true | a3f87cd41c94a83befee9d1ea499555d |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_array_from_pyobj.cpython-313.pyc | test_array_from_pyobj.cpython-313.pyc | Other | 44,165 | 0.95 | 0.008368 | 0 | python-kit | 229 | 2024-06-29T11:20:53.033789 | BSD-3-Clause | true | 58ad2407790e3b618548e4200c569ea5 |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_assumed_shape.cpython-313.pyc | test_assumed_shape.cpython-313.pyc | Other | 3,431 | 0.8 | 0 | 0.057143 | python-kit | 332 | 2025-03-15T07:19:20.759862 | MIT | true | 034a56e76a781d3a28169ea223b320e3 |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_block_docstring.cpython-313.pyc | test_block_docstring.cpython-313.pyc | Other | 1,512 | 0.8 | 0 | 0 | vue-tools | 332 | 2024-04-26T20:58:47.497545 | BSD-3-Clause | true | cdf3f9571b2dbdf952841be70e6e7210 |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_callback.cpython-313.pyc | test_callback.cpython-313.pyc | Other | 14,758 | 0.95 | 0.024691 | 0 | awesome-app | 593 | 2024-08-04T16:31:27.198253 | BSD-3-Clause | true | f245bcad1d10edc6294587c673751eb1 |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_character.cpython-313.pyc | test_character.cpython-313.pyc | Other | 35,819 | 0.95 | 0.03125 | 0 | node-utils | 948 | 2025-06-20T08:03:42.158656 | MIT | true | ce31f90ad394da58e43256c2946a0397 |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_common.cpython-313.pyc | test_common.cpython-313.pyc | Other | 2,190 | 0.8 | 0 | 0 | node-utils | 530 | 2025-01-13T02:36:08.129203 | GPL-3.0 | true | d0905ecc694408650fed0aac2f93c34c |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_crackfortran.cpython-313.pyc | test_crackfortran.cpython-313.pyc | Other | 26,146 | 0.95 | 0.035354 | 0.005319 | node-utils | 347 | 2024-03-31T17:29:32.424811 | GPL-3.0 | true | 541328a237b026aefb2e5575f48c594b |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_data.cpython-313.pyc | test_data.cpython-313.pyc | Other | 7,018 | 0.8 | 0 | 0 | vue-tools | 298 | 2023-09-11T16:41:15.666054 | MIT | true | 4fb96a8cb625cf431fe10edc6ad753c4 |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_docs.cpython-313.pyc | test_docs.cpython-313.pyc | Other | 3,623 | 0.8 | 0 | 0 | node-utils | 265 | 2024-08-27T04:27:45.825775 | GPL-3.0 | true | ac2a56eff7eb3b1ec878bfb5b82208fc |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_f2cmap.cpython-313.pyc | test_f2cmap.cpython-313.pyc | Other | 1,070 | 0.8 | 0 | 0 | python-kit | 79 | 2024-10-20T08:54:22.831043 | BSD-3-Clause | true | 716107b74f41888324bc58a7892db4c7 |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_f2py2e.cpython-313.pyc | test_f2py2e.cpython-313.pyc | Other | 42,911 | 0.95 | 0.017493 | 0.003063 | node-utils | 242 | 2024-01-16T21:23:24.586061 | Apache-2.0 | true | 942c8b4950c625a731b392d54ac9f0ca |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_isoc.cpython-313.pyc | test_isoc.cpython-313.pyc | Other | 2,765 | 0.95 | 0 | 0 | awesome-app | 926 | 2024-05-04T00:35:35.379797 | MIT | true | 6a66da776278a4d5daaa796de13e76f8 |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_kind.cpython-313.pyc | test_kind.cpython-313.pyc | Other | 3,069 | 0.8 | 0.148148 | 0 | react-lib | 443 | 2025-06-21T02:29:03.231867 | MIT | true | 484f35b9ef7b5027514f3459c2ed0590 |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_mixed.cpython-313.pyc | test_mixed.cpython-313.pyc | Other | 2,066 | 0.8 | 0.034483 | 0 | vue-tools | 892 | 2023-11-06T12:20:33.010495 | Apache-2.0 | true | a6e2fa2bf78244a3c8780601c429c2a8 |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_modules.cpython-313.pyc | test_modules.cpython-313.pyc | Other | 4,787 | 0.8 | 0.013889 | 0 | vue-tools | 966 | 2023-10-23T05:48:26.630561 | BSD-3-Clause | true | e09f391874aa311f8113f666d2ba39d1 |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_parameter.cpython-313.pyc | test_parameter.cpython-313.pyc | Other | 9,428 | 0.8 | 0 | 0 | awesome-app | 612 | 2023-11-29T18:30:46.477802 | MIT | true | 8cfdbc8d5e101f776058371307448fe6 |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_pyf_src.cpython-313.pyc | test_pyf_src.cpython-313.pyc | Other | 1,531 | 0.8 | 0.032258 | 0 | awesome-app | 756 | 2024-05-21T05:29:34.038994 | Apache-2.0 | true | 3830e5cc18ea8845c1a6736d67679e0b |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_quoted_character.cpython-313.pyc | test_quoted_character.cpython-313.pyc | Other | 1,351 | 0.8 | 0 | 0 | vue-tools | 29 | 2023-08-10T08:18:43.446128 | BSD-3-Clause | true | 007a1d4798c59b0783a8538a2cab2fff |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_regression.cpython-313.pyc | test_regression.cpython-313.pyc | Other | 12,207 | 0.8 | 0.009524 | 0 | awesome-app | 181 | 2024-02-23T14:31:51.124094 | GPL-3.0 | true | 7d9247df3c15f37ca542820b45af6c1f |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_return_character.cpython-313.pyc | test_return_character.cpython-313.pyc | Other | 3,138 | 0.95 | 0 | 0 | node-utils | 690 | 2025-03-28T21:13:44.893029 | GPL-3.0 | true | bfb5017c5aae73388a1ab9912cfd63e4 |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_return_complex.cpython-313.pyc | test_return_complex.cpython-313.pyc | Other | 4,933 | 0.95 | 0 | 0 | python-kit | 890 | 2024-05-04T00:23:40.209714 | GPL-3.0 | true | 70690388c56cdbab5c30c54b0bc58338 |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_return_integer.cpython-313.pyc | test_return_integer.cpython-313.pyc | Other | 3,592 | 0.95 | 0 | 0 | awesome-app | 29 | 2025-04-27T08:44:01.655630 | BSD-3-Clause | true | 6e5eb2cc7608dd011503d135806e442f |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_return_logical.cpython-313.pyc | test_return_logical.cpython-313.pyc | Other | 4,568 | 0.95 | 0 | 0 | python-kit | 828 | 2024-12-17T12:14:49.630838 | GPL-3.0 | true | 9b78b14519261c6705a7e15ad207c1de |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_return_real.cpython-313.pyc | test_return_real.cpython-313.pyc | Other | 6,074 | 0.95 | 0.024691 | 0 | python-kit | 120 | 2024-01-11T21:04:43.306396 | Apache-2.0 | true | 6c5043ace6930b17c51c03df1741d886 |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_routines.cpython-313.pyc | test_routines.cpython-313.pyc | Other | 2,093 | 0.7 | 0 | 0 | awesome-app | 220 | 2024-08-23T17:49:06.812467 | BSD-3-Clause | true | 787aa17d14f6277a360683eaaf1be438 |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_semicolon_split.cpython-313.pyc | test_semicolon_split.cpython-313.pyc | Other | 2,840 | 0.8 | 0 | 0.020408 | vue-tools | 746 | 2023-12-25T21:42:20.795625 | GPL-3.0 | true | 8977a500bec1e46a16323601cb5a24bc |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_size.cpython-313.pyc | test_size.cpython-313.pyc | Other | 3,329 | 0.8 | 0 | 0 | vue-tools | 968 | 2024-03-15T22:36:30.333752 | BSD-3-Clause | true | 6c73529d5c105751487f17aa39004921 |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_string.cpython-313.pyc | test_string.cpython-313.pyc | Other | 5,818 | 0.8 | 0 | 0 | react-lib | 423 | 2023-12-29T22:49:53.023628 | GPL-3.0 | true | b303c483b433d7a3db69791186410cfc |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_symbolic.cpython-313.pyc | test_symbolic.cpython-313.pyc | Other | 32,004 | 0.95 | 0 | 0 | node-utils | 157 | 2025-03-16T11:13:38.458780 | GPL-3.0 | true | c735418d1e87054b337257175e79bd2a |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\test_value_attrspec.cpython-313.pyc | test_value_attrspec.cpython-313.pyc | Other | 1,082 | 0.8 | 0 | 0 | react-lib | 823 | 2024-08-08T22:30:57.354170 | BSD-3-Clause | true | d569801ebb4b441219a657b28a6bdb42 |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\util.cpython-313.pyc | util.cpython-313.pyc | Other | 18,466 | 0.95 | 0.010471 | 0 | vue-tools | 718 | 2023-12-28T11:47:54.306456 | MIT | true | 5cb0cb0343c11e2d55b12ef156445ed9 |
\n\n | .venv\Lib\site-packages\numpy\f2py\tests\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 562 | 0.7 | 0 | 0 | react-lib | 619 | 2024-07-29T01:50:31.439526 | MIT | true | a78efa519508bd1f1943c3dfdee45ac8 |
project('${modulename}',\n ['c', 'fortran'],\n version : '0.1',\n meson_version: '>= 1.1.0',\n default_options : [\n 'warning_level=1',\n 'buildtype=${buildtype}'\n ])\nfc = meson.get_compiler('fortran')\n\npy = i... | .venv\Lib\site-packages\numpy\f2py\_backends\meson.build.template | meson.build.template | Other | 1,654 | 0.95 | 0 | 0.021277 | node-utils | 916 | 2025-01-09T14:59:00.404176 | Apache-2.0 | false | 92cc1da0ea4efc6c0cae58dab16154db |
from abc import ABC, abstractmethod\n\n\nclass Backend(ABC):\n def __init__(\n self,\n modulename,\n sources,\n extra_objects,\n build_dir,\n include_dirs,\n library_dirs,\n libraries,\n define_macros,\n undef_macros,\n f2py_flags,\n ... | .venv\Lib\site-packages\numpy\f2py\_backends\_backend.py | _backend.py | Python | 1,195 | 0.85 | 0.068182 | 0 | python-kit | 38 | 2025-03-09T12:17:22.454118 | BSD-3-Clause | false | 2265fe07e04fc45b590079930a86a89e |
import abc\nfrom pathlib import Path\nfrom typing import Any, Final\n\nclass Backend(abc.ABC):\n modulename: Final[str]\n sources: Final[list[str | Path]]\n extra_objects: Final[list[str]]\n build_dir: Final[str | Path]\n include_dirs: Final[list[str | Path]]\n library_dirs: Final[list[str | Path]]\n ... | .venv\Lib\site-packages\numpy\f2py\_backends\_backend.pyi | _backend.pyi | Other | 1,388 | 0.95 | 0.065217 | 0.023256 | node-utils | 709 | 2024-03-14T15:59:29.589628 | BSD-3-Clause | false | c3665ee13d0e09560b624b63d63a5c60 |
import os\nimport shutil\nimport sys\nimport warnings\n\nfrom numpy.distutils.core import Extension, setup\nfrom numpy.distutils.misc_util import dict_append\nfrom numpy.distutils.system_info import get_info\nfrom numpy.exceptions import VisibleDeprecationWarning\n\nfrom ._backend import Backend\n\n\nclass DistutilsBac... | .venv\Lib\site-packages\numpy\f2py\_backends\_distutils.py | _distutils.py | Python | 2,461 | 0.85 | 0.144737 | 0 | vue-tools | 256 | 2024-06-27T18:51:38.477575 | MIT | false | 5fcd07045fd572599e327547916f4ff9 |
from typing_extensions import deprecated, override\n\nfrom ._backend import Backend\n\nclass DistutilsBackend(Backend):\n @deprecated(\n "distutils has been deprecated since NumPy 1.26.x. Use the Meson backend instead, or generate wrappers without -c and "\n "use a custom build script"\n )\n # NO... | .venv\Lib\site-packages\numpy\f2py\_backends\_distutils.pyi | _distutils.pyi | Other | 476 | 0.95 | 0.230769 | 0.090909 | node-utils | 548 | 2025-06-19T12:16:17.031501 | Apache-2.0 | false | 973808f2eb436e12e06d3336a1e42b73 |
import errno\nimport os\nimport re\nimport shutil\nimport subprocess\nimport sys\nfrom itertools import chain\nfrom pathlib import Path\nfrom string import Template\n\nfrom ._backend import Backend\n\n\nclass MesonTemplate:\n """Template meson build file generation class."""\n\n def __init__(\n self,\n ... | .venv\Lib\site-packages\numpy\f2py\_backends\_meson.py | _meson.py | Python | 8,338 | 0.95 | 0.203463 | 0.024272 | vue-tools | 958 | 2025-04-08T11:43:42.992094 | GPL-3.0 | false | 0e21fc5c73572e7e2b98f65988cd34c0 |
from collections.abc import Callable\nfrom pathlib import Path\nfrom typing import Final\nfrom typing import Literal as L\n\nfrom typing_extensions import override\n\nfrom ._backend import Backend\n\nclass MesonTemplate:\n modulename: Final[str]\n build_template_path: Final[Path]\n sources: Final[list[str | Pa... | .venv\Lib\site-packages\numpy\f2py\_backends\_meson.pyi | _meson.pyi | Other | 1,932 | 0.95 | 0.238095 | 0.036364 | vue-tools | 778 | 2024-12-21T04:53:44.856163 | GPL-3.0 | false | 664b859fad3a93dc3a155f6e0cce1ab0 |
def f2py_build_generator(name):\n if name == "meson":\n from ._meson import MesonBackend\n return MesonBackend\n elif name == "distutils":\n from ._distutils import DistutilsBackend\n return DistutilsBackend\n else:\n raise ValueError(f"Unknown backend: {name}")\n | .venv\Lib\site-packages\numpy\f2py\_backends\__init__.py | __init__.py | Python | 308 | 0.85 | 0.222222 | 0 | node-utils | 821 | 2025-03-15T05:46:11.181458 | BSD-3-Clause | false | f997c7e4896ac5a47b2489a1a439ab48 |
from typing import Literal as L\n\nfrom ._backend import Backend\n\ndef f2py_build_generator(name: L["distutils", "meson"]) -> Backend: ...\n | .venv\Lib\site-packages\numpy\f2py\_backends\__init__.pyi | __init__.pyi | Other | 141 | 0.85 | 0.2 | 0 | react-lib | 207 | 2024-12-07T13:07:05.393536 | Apache-2.0 | false | 8b62bd007d2af8c274e77028daa9806d |
\n\n | .venv\Lib\site-packages\numpy\f2py\_backends\__pycache__\_backend.cpython-313.pyc | _backend.cpython-313.pyc | Other | 1,451 | 0.8 | 0 | 0 | node-utils | 594 | 2024-03-16T10:45:48.829473 | GPL-3.0 | false | 0469c351910e667436d90ee31a274bbf |
\n\n | .venv\Lib\site-packages\numpy\f2py\_backends\__pycache__\_distutils.cpython-313.pyc | _distutils.cpython-313.pyc | Other | 3,691 | 0.8 | 0.030303 | 0 | vue-tools | 857 | 2025-04-21T18:30:51.759523 | GPL-3.0 | false | c845f306af68b10be5bf28abd2b3bba3 |
\n\n | .venv\Lib\site-packages\numpy\f2py\_backends\__pycache__\_meson.cpython-313.pyc | _meson.cpython-313.pyc | Other | 13,763 | 0.8 | 0.008403 | 0 | react-lib | 826 | 2023-12-12T20:33:39.057770 | BSD-3-Clause | false | 8bbcc2c33f8ce2754da567bff622042b |
\n\n | .venv\Lib\site-packages\numpy\f2py\_backends\__pycache__\__init__.cpython-313.pyc | __init__.cpython-313.pyc | Other | 571 | 0.7 | 0 | 0 | node-utils | 78 | 2024-11-03T17:44:08.800469 | GPL-3.0 | false | 856c617cb4374dfb2616d26aa6dcbf6a |
\n\n | .venv\Lib\site-packages\numpy\f2py\__pycache__\auxfuncs.cpython-313.pyc | auxfuncs.cpython-313.pyc | Other | 40,862 | 0.95 | 0.016892 | 0.014286 | vue-tools | 257 | 2025-03-06T19:41:32.787973 | GPL-3.0 | false | fcb753c522fb89b3cc5e564c58971771 |
\n\n | .venv\Lib\site-packages\numpy\f2py\__pycache__\capi_maps.cpython-313.pyc | capi_maps.cpython-313.pyc | Other | 32,443 | 0.95 | 0.035191 | 0.026946 | python-kit | 773 | 2023-12-22T18:23:03.089414 | GPL-3.0 | false | 1f25c5e1e9ff56a77c52c8087f907550 |
\n\n | .venv\Lib\site-packages\numpy\f2py\__pycache__\cb_rules.cpython-313.pyc | cb_rules.cpython-313.pyc | Other | 22,674 | 0.95 | 0.13 | 0.186047 | node-utils | 20 | 2024-02-29T16:06:47.032790 | GPL-3.0 | false | 950ad2edb08c9ef29c0b6b35df655ec8 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.