biotite 0.40.0__cp312-cp312-win_amd64.whl → 0.41.0__cp312-cp312-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of biotite might be problematic. Click here for more details.

Files changed (90) hide show
  1. biotite/__init__.py +1 -1
  2. biotite/database/pubchem/download.py +23 -23
  3. biotite/database/pubchem/query.py +7 -7
  4. biotite/file.py +17 -9
  5. biotite/sequence/align/banded.c +117 -117
  6. biotite/sequence/align/banded.cp312-win_amd64.pyd +0 -0
  7. biotite/sequence/align/cigar.py +60 -15
  8. biotite/sequence/align/kmeralphabet.c +117 -117
  9. biotite/sequence/align/kmeralphabet.cp312-win_amd64.pyd +0 -0
  10. biotite/sequence/align/kmersimilarity.c +117 -117
  11. biotite/sequence/align/kmersimilarity.cp312-win_amd64.pyd +0 -0
  12. biotite/sequence/align/kmertable.cp312-win_amd64.pyd +0 -0
  13. biotite/sequence/align/kmertable.cpp +117 -117
  14. biotite/sequence/align/localgapped.c +117 -117
  15. biotite/sequence/align/localgapped.cp312-win_amd64.pyd +0 -0
  16. biotite/sequence/align/localungapped.c +117 -117
  17. biotite/sequence/align/localungapped.cp312-win_amd64.pyd +0 -0
  18. biotite/sequence/align/multiple.c +117 -117
  19. biotite/sequence/align/multiple.cp312-win_amd64.pyd +0 -0
  20. biotite/sequence/align/pairwise.c +117 -117
  21. biotite/sequence/align/pairwise.cp312-win_amd64.pyd +0 -0
  22. biotite/sequence/align/permutation.c +117 -117
  23. biotite/sequence/align/permutation.cp312-win_amd64.pyd +0 -0
  24. biotite/sequence/align/selector.c +117 -117
  25. biotite/sequence/align/selector.cp312-win_amd64.pyd +0 -0
  26. biotite/sequence/align/tracetable.c +117 -117
  27. biotite/sequence/align/tracetable.cp312-win_amd64.pyd +0 -0
  28. biotite/sequence/annotation.py +2 -2
  29. biotite/sequence/codec.c +117 -117
  30. biotite/sequence/codec.cp312-win_amd64.pyd +0 -0
  31. biotite/sequence/io/fasta/convert.py +27 -24
  32. biotite/sequence/phylo/nj.c +117 -117
  33. biotite/sequence/phylo/nj.cp312-win_amd64.pyd +0 -0
  34. biotite/sequence/phylo/tree.c +117 -117
  35. biotite/sequence/phylo/tree.cp312-win_amd64.pyd +0 -0
  36. biotite/sequence/phylo/upgma.c +117 -117
  37. biotite/sequence/phylo/upgma.cp312-win_amd64.pyd +0 -0
  38. biotite/structure/__init__.py +2 -0
  39. biotite/structure/bonds.c +1122 -913
  40. biotite/structure/bonds.cp312-win_amd64.pyd +0 -0
  41. biotite/structure/celllist.c +117 -117
  42. biotite/structure/celllist.cp312-win_amd64.pyd +0 -0
  43. biotite/structure/charges.c +117 -117
  44. biotite/structure/charges.cp312-win_amd64.pyd +0 -0
  45. biotite/structure/dotbracket.py +2 -0
  46. biotite/structure/info/atoms.py +6 -1
  47. biotite/structure/info/bonds.py +1 -1
  48. biotite/structure/info/ccd/amino_acids.txt +17 -0
  49. biotite/structure/info/ccd/carbohydrates.txt +2 -0
  50. biotite/structure/info/ccd/components.bcif +0 -0
  51. biotite/structure/info/ccd/nucleotides.txt +1 -0
  52. biotite/structure/info/misc.py +69 -5
  53. biotite/structure/integrity.py +19 -70
  54. biotite/structure/io/ctab.py +12 -106
  55. biotite/structure/io/general.py +157 -165
  56. biotite/structure/io/gro/file.py +16 -16
  57. biotite/structure/io/mmtf/convertarray.c +117 -117
  58. biotite/structure/io/mmtf/convertarray.cp312-win_amd64.pyd +0 -0
  59. biotite/structure/io/mmtf/convertfile.c +117 -117
  60. biotite/structure/io/mmtf/convertfile.cp312-win_amd64.pyd +0 -0
  61. biotite/structure/io/mmtf/decode.c +117 -117
  62. biotite/structure/io/mmtf/decode.cp312-win_amd64.pyd +0 -0
  63. biotite/structure/io/mmtf/encode.c +117 -117
  64. biotite/structure/io/mmtf/encode.cp312-win_amd64.pyd +0 -0
  65. biotite/structure/io/mol/__init__.py +4 -2
  66. biotite/structure/io/mol/convert.py +71 -7
  67. biotite/structure/io/mol/ctab.py +414 -0
  68. biotite/structure/io/mol/header.py +116 -0
  69. biotite/structure/io/mol/{file.py → mol.py} +69 -82
  70. biotite/structure/io/mol/sdf.py +909 -0
  71. biotite/structure/io/pdb/file.py +84 -31
  72. biotite/structure/io/pdb/hybrid36.cp312-win_amd64.pyd +0 -0
  73. biotite/structure/io/pdbx/__init__.py +0 -1
  74. biotite/structure/io/pdbx/bcif.py +2 -3
  75. biotite/structure/io/pdbx/cif.py +9 -5
  76. biotite/structure/io/pdbx/component.py +4 -1
  77. biotite/structure/io/pdbx/convert.py +203 -79
  78. biotite/structure/io/pdbx/encoding.c +117 -117
  79. biotite/structure/io/pdbx/encoding.cp312-win_amd64.pyd +0 -0
  80. biotite/structure/repair.py +253 -0
  81. biotite/structure/sasa.c +117 -117
  82. biotite/structure/sasa.cp312-win_amd64.pyd +0 -0
  83. biotite/structure/sequence.py +112 -0
  84. biotite/structure/superimpose.py +472 -13
  85. {biotite-0.40.0.dist-info → biotite-0.41.0.dist-info}/METADATA +2 -2
  86. {biotite-0.40.0.dist-info → biotite-0.41.0.dist-info}/RECORD +89 -85
  87. biotite/structure/io/pdbx/error.py +0 -14
  88. {biotite-0.40.0.dist-info → biotite-0.41.0.dist-info}/LICENSE.rst +0 -0
  89. {biotite-0.40.0.dist-info → biotite-0.41.0.dist-info}/WHEEL +0 -0
  90. {biotite-0.40.0.dist-info → biotite-0.41.0.dist-info}/top_level.txt +0 -0
@@ -1524,7 +1524,7 @@ static const char *__pyx_f[] = {
1524
1524
 
1525
1525
  /* #### Code section: numeric_typedefs ### */
1526
1526
 
1527
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":730
1527
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":730
1528
1528
  * # in Cython to enable them only on the right systems.
1529
1529
  *
1530
1530
  * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
@@ -1533,7 +1533,7 @@ static const char *__pyx_f[] = {
1533
1533
  */
1534
1534
  typedef npy_int8 __pyx_t_5numpy_int8_t;
1535
1535
 
1536
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1536
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1537
1537
  *
1538
1538
  * ctypedef npy_int8 int8_t
1539
1539
  * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
@@ -1542,7 +1542,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
1542
1542
  */
1543
1543
  typedef npy_int16 __pyx_t_5numpy_int16_t;
1544
1544
 
1545
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1545
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1546
1546
  * ctypedef npy_int8 int8_t
1547
1547
  * ctypedef npy_int16 int16_t
1548
1548
  * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
@@ -1551,7 +1551,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
1551
1551
  */
1552
1552
  typedef npy_int32 __pyx_t_5numpy_int32_t;
1553
1553
 
1554
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1554
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1555
1555
  * ctypedef npy_int16 int16_t
1556
1556
  * ctypedef npy_int32 int32_t
1557
1557
  * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
@@ -1560,7 +1560,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
1560
1560
  */
1561
1561
  typedef npy_int64 __pyx_t_5numpy_int64_t;
1562
1562
 
1563
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":737
1563
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":737
1564
1564
  * #ctypedef npy_int128 int128_t
1565
1565
  *
1566
1566
  * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
@@ -1569,7 +1569,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
1569
1569
  */
1570
1570
  typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1571
1571
 
1572
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1572
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1573
1573
  *
1574
1574
  * ctypedef npy_uint8 uint8_t
1575
1575
  * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
@@ -1578,7 +1578,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1578
1578
  */
1579
1579
  typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1580
1580
 
1581
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1581
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1582
1582
  * ctypedef npy_uint8 uint8_t
1583
1583
  * ctypedef npy_uint16 uint16_t
1584
1584
  * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
@@ -1587,7 +1587,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1587
1587
  */
1588
1588
  typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1589
1589
 
1590
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1590
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1591
1591
  * ctypedef npy_uint16 uint16_t
1592
1592
  * ctypedef npy_uint32 uint32_t
1593
1593
  * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
@@ -1596,7 +1596,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1596
1596
  */
1597
1597
  typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1598
1598
 
1599
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":744
1599
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":744
1600
1600
  * #ctypedef npy_uint128 uint128_t
1601
1601
  *
1602
1602
  * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
@@ -1605,7 +1605,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1605
1605
  */
1606
1606
  typedef npy_float32 __pyx_t_5numpy_float32_t;
1607
1607
 
1608
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1608
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1609
1609
  *
1610
1610
  * ctypedef npy_float32 float32_t
1611
1611
  * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
@@ -1614,7 +1614,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
1614
1614
  */
1615
1615
  typedef npy_float64 __pyx_t_5numpy_float64_t;
1616
1616
 
1617
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":754
1617
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":754
1618
1618
  * # The int types are mapped a bit surprising --
1619
1619
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1620
1620
  * ctypedef npy_long int_t # <<<<<<<<<<<<<<
@@ -1623,7 +1623,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
1623
1623
  */
1624
1624
  typedef npy_long __pyx_t_5numpy_int_t;
1625
1625
 
1626
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1626
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1627
1627
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1628
1628
  * ctypedef npy_long int_t
1629
1629
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1632,7 +1632,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1632
1632
  */
1633
1633
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1634
1634
 
1635
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1635
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1636
1636
  * ctypedef npy_longlong longlong_t
1637
1637
  *
1638
1638
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1641,7 +1641,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1641
1641
  */
1642
1642
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1643
1643
 
1644
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
1644
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
1645
1645
  *
1646
1646
  * ctypedef npy_ulong uint_t
1647
1647
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1650,7 +1650,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1650
1650
  */
1651
1651
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1652
1652
 
1653
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1653
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1654
1654
  * ctypedef npy_ulonglong ulonglong_t
1655
1655
  *
1656
1656
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1659,7 +1659,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1659
1659
  */
1660
1660
  typedef npy_intp __pyx_t_5numpy_intp_t;
1661
1661
 
1662
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1662
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1663
1663
  *
1664
1664
  * ctypedef npy_intp intp_t
1665
1665
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1668,7 +1668,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1668
1668
  */
1669
1669
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1670
1670
 
1671
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1671
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1672
1672
  * ctypedef npy_uintp uintp_t
1673
1673
  *
1674
1674
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1677,7 +1677,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1677
1677
  */
1678
1678
  typedef npy_double __pyx_t_5numpy_float_t;
1679
1679
 
1680
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1680
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1681
1681
  *
1682
1682
  * ctypedef npy_double float_t
1683
1683
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1686,7 +1686,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1686
1686
  */
1687
1687
  typedef npy_double __pyx_t_5numpy_double_t;
1688
1688
 
1689
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
1689
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
1690
1690
  * ctypedef npy_double float_t
1691
1691
  * ctypedef npy_double double_t
1692
1692
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1795,7 +1795,7 @@ static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(do
1795
1795
 
1796
1796
  /*--- Type declarations ---*/
1797
1797
 
1798
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1798
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1799
1799
  * ctypedef npy_longdouble longdouble_t
1800
1800
  *
1801
1801
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1804,7 +1804,7 @@ static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(do
1804
1804
  */
1805
1805
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1806
1806
 
1807
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1807
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1808
1808
  *
1809
1809
  * ctypedef npy_cfloat cfloat_t
1810
1810
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1813,7 +1813,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1813
1813
  */
1814
1814
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1815
1815
 
1816
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1816
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1817
1817
  * ctypedef npy_cfloat cfloat_t
1818
1818
  * ctypedef npy_cdouble cdouble_t
1819
1819
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1822,7 +1822,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1822
1822
  */
1823
1823
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1824
1824
 
1825
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1825
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1826
1826
  * ctypedef npy_clongdouble clongdouble_t
1827
1827
  *
1828
1828
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -3939,7 +3939,7 @@ static int __pyx_m_traverse(PyObject *m, visitproc visit, void *arg) {
3939
3939
  #define __pyx_codeobj__16 __pyx_mstate_global->__pyx_codeobj__16
3940
3940
  /* #### Code section: module_code ### */
3941
3941
 
3942
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
3942
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
3943
3943
  *
3944
3944
  * @property
3945
3945
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -3950,7 +3950,7 @@ static int __pyx_m_traverse(PyObject *m, visitproc visit, void *arg) {
3950
3950
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
3951
3951
  PyObject *__pyx_r;
3952
3952
 
3953
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
3953
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
3954
3954
  * """Returns a borrowed reference to the object owning the data/memory.
3955
3955
  * """
3956
3956
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -3960,7 +3960,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
3960
3960
  __pyx_r = PyArray_BASE(__pyx_v_self);
3961
3961
  goto __pyx_L0;
3962
3962
 
3963
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
3963
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
3964
3964
  *
3965
3965
  * @property
3966
3966
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -3973,7 +3973,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
3973
3973
  return __pyx_r;
3974
3974
  }
3975
3975
 
3976
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
3976
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
3977
3977
  *
3978
3978
  * @property
3979
3979
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -3987,7 +3987,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
3987
3987
  PyArray_Descr *__pyx_t_1;
3988
3988
  __Pyx_RefNannySetupContext("descr", 1);
3989
3989
 
3990
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
3990
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
3991
3991
  * """Returns an owned reference to the dtype of the array.
3992
3992
  * """
3993
3993
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -4000,7 +4000,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
4000
4000
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
4001
4001
  goto __pyx_L0;
4002
4002
 
4003
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
4003
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
4004
4004
  *
4005
4005
  * @property
4006
4006
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -4015,7 +4015,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
4015
4015
  return __pyx_r;
4016
4016
  }
4017
4017
 
4018
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
4018
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
4019
4019
  *
4020
4020
  * @property
4021
4021
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -4026,7 +4026,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
4026
4026
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
4027
4027
  int __pyx_r;
4028
4028
 
4029
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
4029
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
4030
4030
  * """Returns the number of dimensions in the array.
4031
4031
  * """
4032
4032
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -4036,7 +4036,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
4036
4036
  __pyx_r = PyArray_NDIM(__pyx_v_self);
4037
4037
  goto __pyx_L0;
4038
4038
 
4039
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
4039
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
4040
4040
  *
4041
4041
  * @property
4042
4042
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -4049,7 +4049,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
4049
4049
  return __pyx_r;
4050
4050
  }
4051
4051
 
4052
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
4052
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
4053
4053
  *
4054
4054
  * @property
4055
4055
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -4060,7 +4060,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
4060
4060
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
4061
4061
  npy_intp *__pyx_r;
4062
4062
 
4063
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
4063
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
4064
4064
  * Can return NULL for 0-dimensional arrays.
4065
4065
  * """
4066
4066
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -4070,7 +4070,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
4070
4070
  __pyx_r = PyArray_DIMS(__pyx_v_self);
4071
4071
  goto __pyx_L0;
4072
4072
 
4073
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
4073
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
4074
4074
  *
4075
4075
  * @property
4076
4076
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -4083,7 +4083,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
4083
4083
  return __pyx_r;
4084
4084
  }
4085
4085
 
4086
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
4086
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
4087
4087
  *
4088
4088
  * @property
4089
4089
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -4094,7 +4094,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
4094
4094
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
4095
4095
  npy_intp *__pyx_r;
4096
4096
 
4097
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
4097
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
4098
4098
  * The number of elements matches the number of dimensions of the array (ndim).
4099
4099
  * """
4100
4100
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -4104,7 +4104,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
4104
4104
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
4105
4105
  goto __pyx_L0;
4106
4106
 
4107
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
4107
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
4108
4108
  *
4109
4109
  * @property
4110
4110
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -4117,7 +4117,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
4117
4117
  return __pyx_r;
4118
4118
  }
4119
4119
 
4120
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
4120
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
4121
4121
  *
4122
4122
  * @property
4123
4123
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -4128,7 +4128,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
4128
4128
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
4129
4129
  npy_intp __pyx_r;
4130
4130
 
4131
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
4131
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
4132
4132
  * """Returns the total size (in number of elements) of the array.
4133
4133
  * """
4134
4134
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -4138,7 +4138,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
4138
4138
  __pyx_r = PyArray_SIZE(__pyx_v_self);
4139
4139
  goto __pyx_L0;
4140
4140
 
4141
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
4141
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
4142
4142
  *
4143
4143
  * @property
4144
4144
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -4151,7 +4151,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
4151
4151
  return __pyx_r;
4152
4152
  }
4153
4153
 
4154
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
4154
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
4155
4155
  *
4156
4156
  * @property
4157
4157
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -4162,7 +4162,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
4162
4162
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
4163
4163
  char *__pyx_r;
4164
4164
 
4165
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
4165
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
4166
4166
  * of `PyArray_DATA()` instead, which returns a 'void*'.
4167
4167
  * """
4168
4168
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -4172,7 +4172,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
4172
4172
  __pyx_r = PyArray_BYTES(__pyx_v_self);
4173
4173
  goto __pyx_L0;
4174
4174
 
4175
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
4175
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
4176
4176
  *
4177
4177
  * @property
4178
4178
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -4185,7 +4185,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
4185
4185
  return __pyx_r;
4186
4186
  }
4187
4187
 
4188
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
4188
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
4189
4189
  * ctypedef npy_cdouble complex_t
4190
4190
  *
4191
4191
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -4202,7 +4202,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
4202
4202
  int __pyx_clineno = 0;
4203
4203
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
4204
4204
 
4205
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
4205
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
4206
4206
  *
4207
4207
  * cdef inline object PyArray_MultiIterNew1(a):
4208
4208
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -4216,7 +4216,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
4216
4216
  __pyx_t_1 = 0;
4217
4217
  goto __pyx_L0;
4218
4218
 
4219
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
4219
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
4220
4220
  * ctypedef npy_cdouble complex_t
4221
4221
  *
4222
4222
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -4235,7 +4235,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
4235
4235
  return __pyx_r;
4236
4236
  }
4237
4237
 
4238
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
4238
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
4239
4239
  * return PyArray_MultiIterNew(1, <void*>a)
4240
4240
  *
4241
4241
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -4252,7 +4252,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
4252
4252
  int __pyx_clineno = 0;
4253
4253
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
4254
4254
 
4255
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
4255
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
4256
4256
  *
4257
4257
  * cdef inline object PyArray_MultiIterNew2(a, b):
4258
4258
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -4266,7 +4266,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
4266
4266
  __pyx_t_1 = 0;
4267
4267
  goto __pyx_L0;
4268
4268
 
4269
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
4269
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
4270
4270
  * return PyArray_MultiIterNew(1, <void*>a)
4271
4271
  *
4272
4272
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -4285,7 +4285,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
4285
4285
  return __pyx_r;
4286
4286
  }
4287
4287
 
4288
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
4288
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
4289
4289
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
4290
4290
  *
4291
4291
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -4302,7 +4302,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
4302
4302
  int __pyx_clineno = 0;
4303
4303
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
4304
4304
 
4305
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
4305
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
4306
4306
  *
4307
4307
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
4308
4308
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -4316,7 +4316,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
4316
4316
  __pyx_t_1 = 0;
4317
4317
  goto __pyx_L0;
4318
4318
 
4319
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
4319
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
4320
4320
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
4321
4321
  *
4322
4322
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -4335,7 +4335,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
4335
4335
  return __pyx_r;
4336
4336
  }
4337
4337
 
4338
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
4338
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
4339
4339
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
4340
4340
  *
4341
4341
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -4352,7 +4352,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
4352
4352
  int __pyx_clineno = 0;
4353
4353
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
4354
4354
 
4355
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
4355
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
4356
4356
  *
4357
4357
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
4358
4358
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -4366,7 +4366,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
4366
4366
  __pyx_t_1 = 0;
4367
4367
  goto __pyx_L0;
4368
4368
 
4369
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
4369
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
4370
4370
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
4371
4371
  *
4372
4372
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -4385,7 +4385,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
4385
4385
  return __pyx_r;
4386
4386
  }
4387
4387
 
4388
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
4388
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
4389
4389
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
4390
4390
  *
4391
4391
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -4402,7 +4402,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
4402
4402
  int __pyx_clineno = 0;
4403
4403
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
4404
4404
 
4405
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
4405
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
4406
4406
  *
4407
4407
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
4408
4408
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -4416,7 +4416,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
4416
4416
  __pyx_t_1 = 0;
4417
4417
  goto __pyx_L0;
4418
4418
 
4419
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
4419
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
4420
4420
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
4421
4421
  *
4422
4422
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -4435,7 +4435,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
4435
4435
  return __pyx_r;
4436
4436
  }
4437
4437
 
4438
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
4438
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
4439
4439
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
4440
4440
  *
4441
4441
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -4449,7 +4449,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4449
4449
  int __pyx_t_1;
4450
4450
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
4451
4451
 
4452
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
4452
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
4453
4453
  *
4454
4454
  * cdef inline tuple PyDataType_SHAPE(dtype d):
4455
4455
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -4459,7 +4459,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4459
4459
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
4460
4460
  if (__pyx_t_1) {
4461
4461
 
4462
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
4462
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
4463
4463
  * cdef inline tuple PyDataType_SHAPE(dtype d):
4464
4464
  * if PyDataType_HASSUBARRAY(d):
4465
4465
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -4471,7 +4471,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4471
4471
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
4472
4472
  goto __pyx_L0;
4473
4473
 
4474
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
4474
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
4475
4475
  *
4476
4476
  * cdef inline tuple PyDataType_SHAPE(dtype d):
4477
4477
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -4480,7 +4480,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4480
4480
  */
4481
4481
  }
4482
4482
 
4483
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
4483
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
4484
4484
  * return <tuple>d.subarray.shape
4485
4485
  * else:
4486
4486
  * return () # <<<<<<<<<<<<<<
@@ -4494,7 +4494,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4494
4494
  goto __pyx_L0;
4495
4495
  }
4496
4496
 
4497
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
4497
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
4498
4498
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
4499
4499
  *
4500
4500
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -4509,7 +4509,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4509
4509
  return __pyx_r;
4510
4510
  }
4511
4511
 
4512
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
4512
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
4513
4513
  * int _import_umath() except -1
4514
4514
  *
4515
4515
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -4523,7 +4523,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
4523
4523
  const char *__pyx_filename = NULL;
4524
4524
  int __pyx_clineno = 0;
4525
4525
 
4526
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":969
4526
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":969
4527
4527
  *
4528
4528
  * cdef inline void set_array_base(ndarray arr, object base):
4529
4529
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -4532,7 +4532,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
4532
4532
  */
4533
4533
  Py_INCREF(__pyx_v_base);
4534
4534
 
4535
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
4535
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
4536
4536
  * cdef inline void set_array_base(ndarray arr, object base):
4537
4537
  * Py_INCREF(base) # important to do this before stealing the reference below!
4538
4538
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -4541,7 +4541,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
4541
4541
  */
4542
4542
  __pyx_t_1 = PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(1, 970, __pyx_L1_error)
4543
4543
 
4544
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
4544
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
4545
4545
  * int _import_umath() except -1
4546
4546
  *
4547
4547
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -4556,7 +4556,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
4556
4556
  __pyx_L0:;
4557
4557
  }
4558
4558
 
4559
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
4559
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
4560
4560
  * PyArray_SetBaseObject(arr, base)
4561
4561
  *
4562
4562
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -4571,7 +4571,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4571
4571
  int __pyx_t_1;
4572
4572
  __Pyx_RefNannySetupContext("get_array_base", 1);
4573
4573
 
4574
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
4574
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
4575
4575
  *
4576
4576
  * cdef inline object get_array_base(ndarray arr):
4577
4577
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -4580,7 +4580,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4580
4580
  */
4581
4581
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
4582
4582
 
4583
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
4583
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
4584
4584
  * cdef inline object get_array_base(ndarray arr):
4585
4585
  * base = PyArray_BASE(arr)
4586
4586
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -4590,7 +4590,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4590
4590
  __pyx_t_1 = (__pyx_v_base == NULL);
4591
4591
  if (__pyx_t_1) {
4592
4592
 
4593
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
4593
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
4594
4594
  * base = PyArray_BASE(arr)
4595
4595
  * if base is NULL:
4596
4596
  * return None # <<<<<<<<<<<<<<
@@ -4601,7 +4601,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4601
4601
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
4602
4602
  goto __pyx_L0;
4603
4603
 
4604
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
4604
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
4605
4605
  * cdef inline object get_array_base(ndarray arr):
4606
4606
  * base = PyArray_BASE(arr)
4607
4607
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -4610,7 +4610,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4610
4610
  */
4611
4611
  }
4612
4612
 
4613
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
4613
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
4614
4614
  * if base is NULL:
4615
4615
  * return None
4616
4616
  * return <object>base # <<<<<<<<<<<<<<
@@ -4622,7 +4622,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4622
4622
  __pyx_r = ((PyObject *)__pyx_v_base);
4623
4623
  goto __pyx_L0;
4624
4624
 
4625
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
4625
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
4626
4626
  * PyArray_SetBaseObject(arr, base)
4627
4627
  *
4628
4628
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -4637,7 +4637,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4637
4637
  return __pyx_r;
4638
4638
  }
4639
4639
 
4640
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
4640
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
4641
4641
  * # Versions of the import_* functions which are more suitable for
4642
4642
  * # Cython code.
4643
4643
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -4661,7 +4661,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4661
4661
  int __pyx_clineno = 0;
4662
4662
  __Pyx_RefNannySetupContext("import_array", 1);
4663
4663
 
4664
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
4664
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
4665
4665
  * # Cython code.
4666
4666
  * cdef inline int import_array() except -1:
4667
4667
  * try: # <<<<<<<<<<<<<<
@@ -4677,7 +4677,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4677
4677
  __Pyx_XGOTREF(__pyx_t_3);
4678
4678
  /*try:*/ {
4679
4679
 
4680
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
4680
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
4681
4681
  * cdef inline int import_array() except -1:
4682
4682
  * try:
4683
4683
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -4686,7 +4686,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4686
4686
  */
4687
4687
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 982, __pyx_L3_error)
4688
4688
 
4689
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
4689
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
4690
4690
  * # Cython code.
4691
4691
  * cdef inline int import_array() except -1:
4692
4692
  * try: # <<<<<<<<<<<<<<
@@ -4700,7 +4700,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4700
4700
  goto __pyx_L8_try_end;
4701
4701
  __pyx_L3_error:;
4702
4702
 
4703
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
4703
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
4704
4704
  * try:
4705
4705
  * __pyx_import_array()
4706
4706
  * except Exception: # <<<<<<<<<<<<<<
@@ -4715,7 +4715,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4715
4715
  __Pyx_XGOTREF(__pyx_t_6);
4716
4716
  __Pyx_XGOTREF(__pyx_t_7);
4717
4717
 
4718
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
4718
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
4719
4719
  * __pyx_import_array()
4720
4720
  * except Exception:
4721
4721
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -4730,7 +4730,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4730
4730
  }
4731
4731
  goto __pyx_L5_except_error;
4732
4732
 
4733
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
4733
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
4734
4734
  * # Cython code.
4735
4735
  * cdef inline int import_array() except -1:
4736
4736
  * try: # <<<<<<<<<<<<<<
@@ -4746,7 +4746,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4746
4746
  __pyx_L8_try_end:;
4747
4747
  }
4748
4748
 
4749
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
4749
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
4750
4750
  * # Versions of the import_* functions which are more suitable for
4751
4751
  * # Cython code.
4752
4752
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -4769,7 +4769,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4769
4769
  return __pyx_r;
4770
4770
  }
4771
4771
 
4772
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
4772
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
4773
4773
  * raise ImportError("numpy.core.multiarray failed to import")
4774
4774
  *
4775
4775
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -4793,7 +4793,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4793
4793
  int __pyx_clineno = 0;
4794
4794
  __Pyx_RefNannySetupContext("import_umath", 1);
4795
4795
 
4796
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
4796
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
4797
4797
  *
4798
4798
  * cdef inline int import_umath() except -1:
4799
4799
  * try: # <<<<<<<<<<<<<<
@@ -4809,7 +4809,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4809
4809
  __Pyx_XGOTREF(__pyx_t_3);
4810
4810
  /*try:*/ {
4811
4811
 
4812
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
4812
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
4813
4813
  * cdef inline int import_umath() except -1:
4814
4814
  * try:
4815
4815
  * _import_umath() # <<<<<<<<<<<<<<
@@ -4818,7 +4818,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4818
4818
  */
4819
4819
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 988, __pyx_L3_error)
4820
4820
 
4821
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
4821
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
4822
4822
  *
4823
4823
  * cdef inline int import_umath() except -1:
4824
4824
  * try: # <<<<<<<<<<<<<<
@@ -4832,7 +4832,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4832
4832
  goto __pyx_L8_try_end;
4833
4833
  __pyx_L3_error:;
4834
4834
 
4835
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
4835
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
4836
4836
  * try:
4837
4837
  * _import_umath()
4838
4838
  * except Exception: # <<<<<<<<<<<<<<
@@ -4847,7 +4847,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4847
4847
  __Pyx_XGOTREF(__pyx_t_6);
4848
4848
  __Pyx_XGOTREF(__pyx_t_7);
4849
4849
 
4850
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
4850
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
4851
4851
  * _import_umath()
4852
4852
  * except Exception:
4853
4853
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -4862,7 +4862,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4862
4862
  }
4863
4863
  goto __pyx_L5_except_error;
4864
4864
 
4865
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
4865
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
4866
4866
  *
4867
4867
  * cdef inline int import_umath() except -1:
4868
4868
  * try: # <<<<<<<<<<<<<<
@@ -4878,7 +4878,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4878
4878
  __pyx_L8_try_end:;
4879
4879
  }
4880
4880
 
4881
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
4881
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
4882
4882
  * raise ImportError("numpy.core.multiarray failed to import")
4883
4883
  *
4884
4884
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -4901,7 +4901,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4901
4901
  return __pyx_r;
4902
4902
  }
4903
4903
 
4904
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
4904
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
4905
4905
  * raise ImportError("numpy.core.umath failed to import")
4906
4906
  *
4907
4907
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -4925,7 +4925,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4925
4925
  int __pyx_clineno = 0;
4926
4926
  __Pyx_RefNannySetupContext("import_ufunc", 1);
4927
4927
 
4928
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
4928
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
4929
4929
  *
4930
4930
  * cdef inline int import_ufunc() except -1:
4931
4931
  * try: # <<<<<<<<<<<<<<
@@ -4941,7 +4941,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4941
4941
  __Pyx_XGOTREF(__pyx_t_3);
4942
4942
  /*try:*/ {
4943
4943
 
4944
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
4944
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
4945
4945
  * cdef inline int import_ufunc() except -1:
4946
4946
  * try:
4947
4947
  * _import_umath() # <<<<<<<<<<<<<<
@@ -4950,7 +4950,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4950
4950
  */
4951
4951
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 994, __pyx_L3_error)
4952
4952
 
4953
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
4953
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
4954
4954
  *
4955
4955
  * cdef inline int import_ufunc() except -1:
4956
4956
  * try: # <<<<<<<<<<<<<<
@@ -4964,7 +4964,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4964
4964
  goto __pyx_L8_try_end;
4965
4965
  __pyx_L3_error:;
4966
4966
 
4967
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
4967
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
4968
4968
  * try:
4969
4969
  * _import_umath()
4970
4970
  * except Exception: # <<<<<<<<<<<<<<
@@ -4979,7 +4979,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4979
4979
  __Pyx_XGOTREF(__pyx_t_6);
4980
4980
  __Pyx_XGOTREF(__pyx_t_7);
4981
4981
 
4982
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
4982
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
4983
4983
  * _import_umath()
4984
4984
  * except Exception:
4985
4985
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -4994,7 +4994,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4994
4994
  }
4995
4995
  goto __pyx_L5_except_error;
4996
4996
 
4997
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
4997
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
4998
4998
  *
4999
4999
  * cdef inline int import_ufunc() except -1:
5000
5000
  * try: # <<<<<<<<<<<<<<
@@ -5010,7 +5010,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5010
5010
  __pyx_L8_try_end:;
5011
5011
  }
5012
5012
 
5013
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
5013
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
5014
5014
  * raise ImportError("numpy.core.umath failed to import")
5015
5015
  *
5016
5016
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -5033,7 +5033,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5033
5033
  return __pyx_r;
5034
5034
  }
5035
5035
 
5036
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
5036
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
5037
5037
  *
5038
5038
  *
5039
5039
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -5044,7 +5044,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5044
5044
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
5045
5045
  int __pyx_r;
5046
5046
 
5047
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
5047
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
5048
5048
  * bool
5049
5049
  * """
5050
5050
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -5054,7 +5054,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
5054
5054
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
5055
5055
  goto __pyx_L0;
5056
5056
 
5057
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
5057
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
5058
5058
  *
5059
5059
  *
5060
5060
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -5067,7 +5067,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
5067
5067
  return __pyx_r;
5068
5068
  }
5069
5069
 
5070
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
5070
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
5071
5071
  *
5072
5072
  *
5073
5073
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -5078,7 +5078,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
5078
5078
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
5079
5079
  int __pyx_r;
5080
5080
 
5081
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
5081
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
5082
5082
  * bool
5083
5083
  * """
5084
5084
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -5088,7 +5088,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
5088
5088
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
5089
5089
  goto __pyx_L0;
5090
5090
 
5091
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
5091
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
5092
5092
  *
5093
5093
  *
5094
5094
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -5101,7 +5101,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
5101
5101
  return __pyx_r;
5102
5102
  }
5103
5103
 
5104
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
5104
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
5105
5105
  *
5106
5106
  *
5107
5107
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5112,7 +5112,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
5112
5112
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
5113
5113
  npy_datetime __pyx_r;
5114
5114
 
5115
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
5115
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
5116
5116
  * also needed. That can be found using `get_datetime64_unit`.
5117
5117
  * """
5118
5118
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -5122,7 +5122,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
5122
5122
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
5123
5123
  goto __pyx_L0;
5124
5124
 
5125
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
5125
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
5126
5126
  *
5127
5127
  *
5128
5128
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5135,7 +5135,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
5135
5135
  return __pyx_r;
5136
5136
  }
5137
5137
 
5138
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
5138
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
5139
5139
  *
5140
5140
  *
5141
5141
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5146,7 +5146,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
5146
5146
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
5147
5147
  npy_timedelta __pyx_r;
5148
5148
 
5149
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1043
5149
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1043
5150
5150
  * returns the int64 value underlying scalar numpy timedelta64 object
5151
5151
  * """
5152
5152
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -5156,7 +5156,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
5156
5156
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
5157
5157
  goto __pyx_L0;
5158
5158
 
5159
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
5159
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
5160
5160
  *
5161
5161
  *
5162
5162
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5169,7 +5169,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
5169
5169
  return __pyx_r;
5170
5170
  }
5171
5171
 
5172
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
5172
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
5173
5173
  *
5174
5174
  *
5175
5175
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5180,7 +5180,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
5180
5180
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
5181
5181
  NPY_DATETIMEUNIT __pyx_r;
5182
5182
 
5183
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1050
5183
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1050
5184
5184
  * returns the unit part of the dtype for a numpy datetime64 object.
5185
5185
  * """
5186
5186
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -5188,7 +5188,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
5188
5188
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
5189
5189
  goto __pyx_L0;
5190
5190
 
5191
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
5191
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
5192
5192
  *
5193
5193
  *
5194
5194
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -9894,7 +9894,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
9894
9894
  __Pyx_RefNannyDeclarations
9895
9895
  __Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0);
9896
9896
 
9897
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
9897
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
9898
9898
  * __pyx_import_array()
9899
9899
  * except Exception:
9900
9900
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -9905,7 +9905,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
9905
9905
  __Pyx_GOTREF(__pyx_tuple_);
9906
9906
  __Pyx_GIVEREF(__pyx_tuple_);
9907
9907
 
9908
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
9908
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
9909
9909
  * _import_umath()
9910
9910
  * except Exception:
9911
9911
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<