biotite 0.40.0__cp311-cp311-win_amd64.whl → 0.41.0__cp311-cp311-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 +119 -119
  6. biotite/sequence/align/banded.cp311-win_amd64.pyd +0 -0
  7. biotite/sequence/align/cigar.py +60 -15
  8. biotite/sequence/align/kmeralphabet.c +119 -119
  9. biotite/sequence/align/kmeralphabet.cp311-win_amd64.pyd +0 -0
  10. biotite/sequence/align/kmersimilarity.c +119 -119
  11. biotite/sequence/align/kmersimilarity.cp311-win_amd64.pyd +0 -0
  12. biotite/sequence/align/kmertable.cp311-win_amd64.pyd +0 -0
  13. biotite/sequence/align/kmertable.cpp +119 -119
  14. biotite/sequence/align/localgapped.c +119 -119
  15. biotite/sequence/align/localgapped.cp311-win_amd64.pyd +0 -0
  16. biotite/sequence/align/localungapped.c +119 -119
  17. biotite/sequence/align/localungapped.cp311-win_amd64.pyd +0 -0
  18. biotite/sequence/align/multiple.c +119 -119
  19. biotite/sequence/align/multiple.cp311-win_amd64.pyd +0 -0
  20. biotite/sequence/align/pairwise.c +119 -119
  21. biotite/sequence/align/pairwise.cp311-win_amd64.pyd +0 -0
  22. biotite/sequence/align/permutation.c +119 -119
  23. biotite/sequence/align/permutation.cp311-win_amd64.pyd +0 -0
  24. biotite/sequence/align/selector.c +119 -119
  25. biotite/sequence/align/selector.cp311-win_amd64.pyd +0 -0
  26. biotite/sequence/align/tracetable.c +119 -119
  27. biotite/sequence/align/tracetable.cp311-win_amd64.pyd +0 -0
  28. biotite/sequence/annotation.py +2 -2
  29. biotite/sequence/codec.c +119 -119
  30. biotite/sequence/codec.cp311-win_amd64.pyd +0 -0
  31. biotite/sequence/io/fasta/convert.py +27 -24
  32. biotite/sequence/phylo/nj.c +119 -119
  33. biotite/sequence/phylo/nj.cp311-win_amd64.pyd +0 -0
  34. biotite/sequence/phylo/tree.c +119 -119
  35. biotite/sequence/phylo/tree.cp311-win_amd64.pyd +0 -0
  36. biotite/sequence/phylo/upgma.c +119 -119
  37. biotite/sequence/phylo/upgma.cp311-win_amd64.pyd +0 -0
  38. biotite/structure/__init__.py +2 -0
  39. biotite/structure/bonds.c +1124 -915
  40. biotite/structure/bonds.cp311-win_amd64.pyd +0 -0
  41. biotite/structure/celllist.c +119 -119
  42. biotite/structure/celllist.cp311-win_amd64.pyd +0 -0
  43. biotite/structure/charges.c +119 -119
  44. biotite/structure/charges.cp311-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 +119 -119
  58. biotite/structure/io/mmtf/convertarray.cp311-win_amd64.pyd +0 -0
  59. biotite/structure/io/mmtf/convertfile.c +119 -119
  60. biotite/structure/io/mmtf/convertfile.cp311-win_amd64.pyd +0 -0
  61. biotite/structure/io/mmtf/decode.c +119 -119
  62. biotite/structure/io/mmtf/decode.cp311-win_amd64.pyd +0 -0
  63. biotite/structure/io/mmtf/encode.c +119 -119
  64. biotite/structure/io/mmtf/encode.cp311-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.cp311-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 +119 -119
  79. biotite/structure/io/pdbx/encoding.cp311-win_amd64.pyd +0 -0
  80. biotite/structure/repair.py +253 -0
  81. biotite/structure/sasa.c +119 -119
  82. biotite/structure/sasa.cp311-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
@@ -1525,7 +1525,7 @@ static const char *__pyx_f[] = {
1525
1525
 
1526
1526
  /* #### Code section: numeric_typedefs ### */
1527
1527
 
1528
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1528
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1529
1529
  * # in Cython to enable them only on the right systems.
1530
1530
  *
1531
1531
  * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
@@ -1534,7 +1534,7 @@ static const char *__pyx_f[] = {
1534
1534
  */
1535
1535
  typedef npy_int8 __pyx_t_5numpy_int8_t;
1536
1536
 
1537
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1537
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1538
1538
  *
1539
1539
  * ctypedef npy_int8 int8_t
1540
1540
  * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
@@ -1543,7 +1543,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
1543
1543
  */
1544
1544
  typedef npy_int16 __pyx_t_5numpy_int16_t;
1545
1545
 
1546
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1546
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1547
1547
  * ctypedef npy_int8 int8_t
1548
1548
  * ctypedef npy_int16 int16_t
1549
1549
  * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
@@ -1552,7 +1552,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
1552
1552
  */
1553
1553
  typedef npy_int32 __pyx_t_5numpy_int32_t;
1554
1554
 
1555
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":734
1555
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":734
1556
1556
  * ctypedef npy_int16 int16_t
1557
1557
  * ctypedef npy_int32 int32_t
1558
1558
  * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
@@ -1561,7 +1561,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
1561
1561
  */
1562
1562
  typedef npy_int64 __pyx_t_5numpy_int64_t;
1563
1563
 
1564
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1564
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1565
1565
  * #ctypedef npy_int128 int128_t
1566
1566
  *
1567
1567
  * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
@@ -1570,7 +1570,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
1570
1570
  */
1571
1571
  typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1572
1572
 
1573
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1573
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1574
1574
  *
1575
1575
  * ctypedef npy_uint8 uint8_t
1576
1576
  * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
@@ -1579,7 +1579,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1579
1579
  */
1580
1580
  typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1581
1581
 
1582
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1582
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1583
1583
  * ctypedef npy_uint8 uint8_t
1584
1584
  * ctypedef npy_uint16 uint16_t
1585
1585
  * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
@@ -1588,7 +1588,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1588
1588
  */
1589
1589
  typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1590
1590
 
1591
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":741
1591
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":741
1592
1592
  * ctypedef npy_uint16 uint16_t
1593
1593
  * ctypedef npy_uint32 uint32_t
1594
1594
  * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
@@ -1597,7 +1597,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1597
1597
  */
1598
1598
  typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1599
1599
 
1600
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1600
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1601
1601
  * #ctypedef npy_uint128 uint128_t
1602
1602
  *
1603
1603
  * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
@@ -1606,7 +1606,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1606
1606
  */
1607
1607
  typedef npy_float32 __pyx_t_5numpy_float32_t;
1608
1608
 
1609
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":746
1609
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":746
1610
1610
  *
1611
1611
  * ctypedef npy_float32 float32_t
1612
1612
  * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
@@ -1615,7 +1615,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
1615
1615
  */
1616
1616
  typedef npy_float64 __pyx_t_5numpy_float64_t;
1617
1617
 
1618
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1618
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1619
1619
  * # The int types are mapped a bit surprising --
1620
1620
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1621
1621
  * ctypedef npy_long int_t # <<<<<<<<<<<<<<
@@ -1624,7 +1624,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
1624
1624
  */
1625
1625
  typedef npy_long __pyx_t_5numpy_int_t;
1626
1626
 
1627
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":756
1627
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":756
1628
1628
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1629
1629
  * ctypedef npy_long int_t
1630
1630
  * ctypedef npy_longlong long_t # <<<<<<<<<<<<<<
@@ -1633,7 +1633,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1633
1633
  */
1634
1634
  typedef npy_longlong __pyx_t_5numpy_long_t;
1635
1635
 
1636
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1636
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1637
1637
  * ctypedef npy_long int_t
1638
1638
  * ctypedef npy_longlong long_t
1639
1639
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1642,7 +1642,7 @@ typedef npy_longlong __pyx_t_5numpy_long_t;
1642
1642
  */
1643
1643
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1644
1644
 
1645
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":759
1645
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":759
1646
1646
  * ctypedef npy_longlong longlong_t
1647
1647
  *
1648
1648
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1651,7 +1651,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1651
1651
  */
1652
1652
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1653
1653
 
1654
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1654
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1655
1655
  *
1656
1656
  * ctypedef npy_ulong uint_t
1657
1657
  * ctypedef npy_ulonglong ulong_t # <<<<<<<<<<<<<<
@@ -1660,7 +1660,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1660
1660
  */
1661
1661
  typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1662
1662
 
1663
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1663
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1664
1664
  * ctypedef npy_ulong uint_t
1665
1665
  * ctypedef npy_ulonglong ulong_t
1666
1666
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1669,7 +1669,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1669
1669
  */
1670
1670
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1671
1671
 
1672
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1672
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1673
1673
  * ctypedef npy_ulonglong ulonglong_t
1674
1674
  *
1675
1675
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1678,7 +1678,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1678
1678
  */
1679
1679
  typedef npy_intp __pyx_t_5numpy_intp_t;
1680
1680
 
1681
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1681
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1682
1682
  *
1683
1683
  * ctypedef npy_intp intp_t
1684
1684
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1687,7 +1687,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1687
1687
  */
1688
1688
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1689
1689
 
1690
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":766
1690
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":766
1691
1691
  * ctypedef npy_uintp uintp_t
1692
1692
  *
1693
1693
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1696,7 +1696,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1696
1696
  */
1697
1697
  typedef npy_double __pyx_t_5numpy_float_t;
1698
1698
 
1699
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1699
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1700
1700
  *
1701
1701
  * ctypedef npy_double float_t
1702
1702
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1705,7 +1705,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1705
1705
  */
1706
1706
  typedef npy_double __pyx_t_5numpy_double_t;
1707
1707
 
1708
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1708
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1709
1709
  * ctypedef npy_double float_t
1710
1710
  * ctypedef npy_double double_t
1711
1711
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1745,7 +1745,7 @@ struct __pyx_obj_7biotite_8sequence_5phylo_4tree_TreeNode;
1745
1745
  struct __pyx_obj_7biotite_8sequence_5phylo_4tree___pyx_scope_struct__as_graph;
1746
1746
  struct __pyx_obj_7biotite_8sequence_5phylo_4tree___pyx_scope_struct_1_genexpr;
1747
1747
 
1748
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":770
1748
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":770
1749
1749
  * ctypedef npy_longdouble longdouble_t
1750
1750
  *
1751
1751
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1754,7 +1754,7 @@ struct __pyx_obj_7biotite_8sequence_5phylo_4tree___pyx_scope_struct_1_genexpr;
1754
1754
  */
1755
1755
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1756
1756
 
1757
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1757
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1758
1758
  *
1759
1759
  * ctypedef npy_cfloat cfloat_t
1760
1760
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1763,7 +1763,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1763
1763
  */
1764
1764
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1765
1765
 
1766
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
1766
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
1767
1767
  * ctypedef npy_cfloat cfloat_t
1768
1768
  * ctypedef npy_cdouble cdouble_t
1769
1769
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1772,7 +1772,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1772
1772
  */
1773
1773
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1774
1774
 
1775
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
1775
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
1776
1776
  * ctypedef npy_clongdouble clongdouble_t
1777
1777
  *
1778
1778
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -4832,7 +4832,7 @@ static int __pyx_m_traverse(PyObject *m, visitproc visit, void *arg) {
4832
4832
  #define __pyx_codeobj__64 __pyx_mstate_global->__pyx_codeobj__64
4833
4833
  /* #### Code section: module_code ### */
4834
4834
 
4835
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
4835
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
4836
4836
  *
4837
4837
  * @property
4838
4838
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -4843,7 +4843,7 @@ static int __pyx_m_traverse(PyObject *m, visitproc visit, void *arg) {
4843
4843
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
4844
4844
  PyObject *__pyx_r;
4845
4845
 
4846
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
4846
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
4847
4847
  * """Returns a borrowed reference to the object owning the data/memory.
4848
4848
  * """
4849
4849
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -4853,7 +4853,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
4853
4853
  __pyx_r = PyArray_BASE(__pyx_v_self);
4854
4854
  goto __pyx_L0;
4855
4855
 
4856
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
4856
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
4857
4857
  *
4858
4858
  * @property
4859
4859
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -4866,7 +4866,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
4866
4866
  return __pyx_r;
4867
4867
  }
4868
4868
 
4869
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
4869
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
4870
4870
  *
4871
4871
  * @property
4872
4872
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -4880,7 +4880,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
4880
4880
  PyArray_Descr *__pyx_t_1;
4881
4881
  __Pyx_RefNannySetupContext("descr", 1);
4882
4882
 
4883
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
4883
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
4884
4884
  * """Returns an owned reference to the dtype of the array.
4885
4885
  * """
4886
4886
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -4893,7 +4893,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
4893
4893
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
4894
4894
  goto __pyx_L0;
4895
4895
 
4896
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
4896
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
4897
4897
  *
4898
4898
  * @property
4899
4899
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -4908,7 +4908,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
4908
4908
  return __pyx_r;
4909
4909
  }
4910
4910
 
4911
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
4911
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
4912
4912
  *
4913
4913
  * @property
4914
4914
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -4919,7 +4919,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
4919
4919
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
4920
4920
  int __pyx_r;
4921
4921
 
4922
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
4922
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
4923
4923
  * """Returns the number of dimensions in the array.
4924
4924
  * """
4925
4925
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -4929,7 +4929,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
4929
4929
  __pyx_r = PyArray_NDIM(__pyx_v_self);
4930
4930
  goto __pyx_L0;
4931
4931
 
4932
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
4932
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
4933
4933
  *
4934
4934
  * @property
4935
4935
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -4942,7 +4942,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
4942
4942
  return __pyx_r;
4943
4943
  }
4944
4944
 
4945
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
4945
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
4946
4946
  *
4947
4947
  * @property
4948
4948
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -4953,7 +4953,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
4953
4953
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
4954
4954
  npy_intp *__pyx_r;
4955
4955
 
4956
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
4956
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
4957
4957
  * Can return NULL for 0-dimensional arrays.
4958
4958
  * """
4959
4959
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -4963,7 +4963,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
4963
4963
  __pyx_r = PyArray_DIMS(__pyx_v_self);
4964
4964
  goto __pyx_L0;
4965
4965
 
4966
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
4966
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
4967
4967
  *
4968
4968
  * @property
4969
4969
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -4976,7 +4976,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
4976
4976
  return __pyx_r;
4977
4977
  }
4978
4978
 
4979
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
4979
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
4980
4980
  *
4981
4981
  * @property
4982
4982
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -4987,7 +4987,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
4987
4987
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
4988
4988
  npy_intp *__pyx_r;
4989
4989
 
4990
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
4990
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
4991
4991
  * The number of elements matches the number of dimensions of the array (ndim).
4992
4992
  * """
4993
4993
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -4997,7 +4997,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
4997
4997
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
4998
4998
  goto __pyx_L0;
4999
4999
 
5000
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
5000
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
5001
5001
  *
5002
5002
  * @property
5003
5003
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -5010,7 +5010,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
5010
5010
  return __pyx_r;
5011
5011
  }
5012
5012
 
5013
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
5013
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
5014
5014
  *
5015
5015
  * @property
5016
5016
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -5021,7 +5021,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
5021
5021
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
5022
5022
  npy_intp __pyx_r;
5023
5023
 
5024
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
5024
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
5025
5025
  * """Returns the total size (in number of elements) of the array.
5026
5026
  * """
5027
5027
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -5031,7 +5031,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
5031
5031
  __pyx_r = PyArray_SIZE(__pyx_v_self);
5032
5032
  goto __pyx_L0;
5033
5033
 
5034
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
5034
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
5035
5035
  *
5036
5036
  * @property
5037
5037
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -5044,7 +5044,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
5044
5044
  return __pyx_r;
5045
5045
  }
5046
5046
 
5047
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
5047
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
5048
5048
  *
5049
5049
  * @property
5050
5050
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -5055,7 +5055,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
5055
5055
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
5056
5056
  char *__pyx_r;
5057
5057
 
5058
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
5058
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
5059
5059
  * of `PyArray_DATA()` instead, which returns a 'void*'.
5060
5060
  * """
5061
5061
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -5065,7 +5065,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
5065
5065
  __pyx_r = PyArray_BYTES(__pyx_v_self);
5066
5066
  goto __pyx_L0;
5067
5067
 
5068
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
5068
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
5069
5069
  *
5070
5070
  * @property
5071
5071
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -5078,7 +5078,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
5078
5078
  return __pyx_r;
5079
5079
  }
5080
5080
 
5081
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
5081
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
5082
5082
  * ctypedef npy_cdouble complex_t
5083
5083
  *
5084
5084
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -5095,7 +5095,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
5095
5095
  int __pyx_clineno = 0;
5096
5096
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
5097
5097
 
5098
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
5098
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
5099
5099
  *
5100
5100
  * cdef inline object PyArray_MultiIterNew1(a):
5101
5101
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -5109,7 +5109,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
5109
5109
  __pyx_t_1 = 0;
5110
5110
  goto __pyx_L0;
5111
5111
 
5112
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
5112
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
5113
5113
  * ctypedef npy_cdouble complex_t
5114
5114
  *
5115
5115
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -5128,7 +5128,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
5128
5128
  return __pyx_r;
5129
5129
  }
5130
5130
 
5131
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
5131
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
5132
5132
  * return PyArray_MultiIterNew(1, <void*>a)
5133
5133
  *
5134
5134
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -5145,7 +5145,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
5145
5145
  int __pyx_clineno = 0;
5146
5146
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
5147
5147
 
5148
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
5148
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
5149
5149
  *
5150
5150
  * cdef inline object PyArray_MultiIterNew2(a, b):
5151
5151
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -5159,7 +5159,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
5159
5159
  __pyx_t_1 = 0;
5160
5160
  goto __pyx_L0;
5161
5161
 
5162
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
5162
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
5163
5163
  * return PyArray_MultiIterNew(1, <void*>a)
5164
5164
  *
5165
5165
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -5178,7 +5178,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
5178
5178
  return __pyx_r;
5179
5179
  }
5180
5180
 
5181
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
5181
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
5182
5182
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
5183
5183
  *
5184
5184
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -5195,7 +5195,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
5195
5195
  int __pyx_clineno = 0;
5196
5196
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
5197
5197
 
5198
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
5198
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
5199
5199
  *
5200
5200
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
5201
5201
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -5209,7 +5209,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
5209
5209
  __pyx_t_1 = 0;
5210
5210
  goto __pyx_L0;
5211
5211
 
5212
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
5212
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
5213
5213
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
5214
5214
  *
5215
5215
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -5228,7 +5228,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
5228
5228
  return __pyx_r;
5229
5229
  }
5230
5230
 
5231
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
5231
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
5232
5232
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
5233
5233
  *
5234
5234
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -5245,7 +5245,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
5245
5245
  int __pyx_clineno = 0;
5246
5246
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
5247
5247
 
5248
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
5248
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
5249
5249
  *
5250
5250
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
5251
5251
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -5259,7 +5259,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
5259
5259
  __pyx_t_1 = 0;
5260
5260
  goto __pyx_L0;
5261
5261
 
5262
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
5262
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
5263
5263
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
5264
5264
  *
5265
5265
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -5278,7 +5278,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
5278
5278
  return __pyx_r;
5279
5279
  }
5280
5280
 
5281
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
5281
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
5282
5282
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
5283
5283
  *
5284
5284
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -5295,7 +5295,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
5295
5295
  int __pyx_clineno = 0;
5296
5296
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
5297
5297
 
5298
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
5298
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
5299
5299
  *
5300
5300
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
5301
5301
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -5309,7 +5309,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
5309
5309
  __pyx_t_1 = 0;
5310
5310
  goto __pyx_L0;
5311
5311
 
5312
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
5312
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
5313
5313
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
5314
5314
  *
5315
5315
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -5328,7 +5328,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
5328
5328
  return __pyx_r;
5329
5329
  }
5330
5330
 
5331
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
5331
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
5332
5332
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
5333
5333
  *
5334
5334
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -5342,7 +5342,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
5342
5342
  int __pyx_t_1;
5343
5343
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
5344
5344
 
5345
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
5345
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
5346
5346
  *
5347
5347
  * cdef inline tuple PyDataType_SHAPE(dtype d):
5348
5348
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -5352,7 +5352,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
5352
5352
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
5353
5353
  if (__pyx_t_1) {
5354
5354
 
5355
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
5355
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
5356
5356
  * cdef inline tuple PyDataType_SHAPE(dtype d):
5357
5357
  * if PyDataType_HASSUBARRAY(d):
5358
5358
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -5364,7 +5364,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
5364
5364
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
5365
5365
  goto __pyx_L0;
5366
5366
 
5367
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
5367
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
5368
5368
  *
5369
5369
  * cdef inline tuple PyDataType_SHAPE(dtype d):
5370
5370
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -5373,7 +5373,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
5373
5373
  */
5374
5374
  }
5375
5375
 
5376
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":795
5376
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":795
5377
5377
  * return <tuple>d.subarray.shape
5378
5378
  * else:
5379
5379
  * return () # <<<<<<<<<<<<<<
@@ -5387,7 +5387,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
5387
5387
  goto __pyx_L0;
5388
5388
  }
5389
5389
 
5390
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
5390
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
5391
5391
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
5392
5392
  *
5393
5393
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -5402,7 +5402,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
5402
5402
  return __pyx_r;
5403
5403
  }
5404
5404
 
5405
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
5405
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
5406
5406
  * int _import_umath() except -1
5407
5407
  *
5408
5408
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -5412,7 +5412,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
5412
5412
 
5413
5413
  static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
5414
5414
 
5415
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
5415
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
5416
5416
  *
5417
5417
  * cdef inline void set_array_base(ndarray arr, object base):
5418
5418
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -5421,7 +5421,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
5421
5421
  */
5422
5422
  Py_INCREF(__pyx_v_base);
5423
5423
 
5424
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
5424
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
5425
5425
  * cdef inline void set_array_base(ndarray arr, object base):
5426
5426
  * Py_INCREF(base) # important to do this before stealing the reference below!
5427
5427
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -5430,7 +5430,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
5430
5430
  */
5431
5431
  (void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
5432
5432
 
5433
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
5433
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
5434
5434
  * int _import_umath() except -1
5435
5435
  *
5436
5436
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -5441,7 +5441,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
5441
5441
  /* function exit code */
5442
5442
  }
5443
5443
 
5444
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
5444
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
5445
5445
  * PyArray_SetBaseObject(arr, base)
5446
5446
  *
5447
5447
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -5456,7 +5456,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
5456
5456
  int __pyx_t_1;
5457
5457
  __Pyx_RefNannySetupContext("get_array_base", 1);
5458
5458
 
5459
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
5459
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
5460
5460
  *
5461
5461
  * cdef inline object get_array_base(ndarray arr):
5462
5462
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -5465,7 +5465,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
5465
5465
  */
5466
5466
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
5467
5467
 
5468
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
5468
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
5469
5469
  * cdef inline object get_array_base(ndarray arr):
5470
5470
  * base = PyArray_BASE(arr)
5471
5471
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -5475,7 +5475,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
5475
5475
  __pyx_t_1 = (__pyx_v_base == NULL);
5476
5476
  if (__pyx_t_1) {
5477
5477
 
5478
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
5478
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
5479
5479
  * base = PyArray_BASE(arr)
5480
5480
  * if base is NULL:
5481
5481
  * return None # <<<<<<<<<<<<<<
@@ -5486,7 +5486,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
5486
5486
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
5487
5487
  goto __pyx_L0;
5488
5488
 
5489
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
5489
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
5490
5490
  * cdef inline object get_array_base(ndarray arr):
5491
5491
  * base = PyArray_BASE(arr)
5492
5492
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -5495,7 +5495,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
5495
5495
  */
5496
5496
  }
5497
5497
 
5498
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
5498
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
5499
5499
  * if base is NULL:
5500
5500
  * return None
5501
5501
  * return <object>base # <<<<<<<<<<<<<<
@@ -5507,7 +5507,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
5507
5507
  __pyx_r = ((PyObject *)__pyx_v_base);
5508
5508
  goto __pyx_L0;
5509
5509
 
5510
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
5510
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
5511
5511
  * PyArray_SetBaseObject(arr, base)
5512
5512
  *
5513
5513
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -5522,7 +5522,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
5522
5522
  return __pyx_r;
5523
5523
  }
5524
5524
 
5525
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
5525
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
5526
5526
  * # Versions of the import_* functions which are more suitable for
5527
5527
  * # Cython code.
5528
5528
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -5546,7 +5546,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
5546
5546
  int __pyx_clineno = 0;
5547
5547
  __Pyx_RefNannySetupContext("import_array", 1);
5548
5548
 
5549
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
5549
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
5550
5550
  * # Cython code.
5551
5551
  * cdef inline int import_array() except -1:
5552
5552
  * try: # <<<<<<<<<<<<<<
@@ -5562,7 +5562,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
5562
5562
  __Pyx_XGOTREF(__pyx_t_3);
5563
5563
  /*try:*/ {
5564
5564
 
5565
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
5565
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
5566
5566
  * cdef inline int import_array() except -1:
5567
5567
  * try:
5568
5568
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -5571,7 +5571,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
5571
5571
  */
5572
5572
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 984, __pyx_L3_error)
5573
5573
 
5574
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
5574
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
5575
5575
  * # Cython code.
5576
5576
  * cdef inline int import_array() except -1:
5577
5577
  * try: # <<<<<<<<<<<<<<
@@ -5585,7 +5585,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
5585
5585
  goto __pyx_L8_try_end;
5586
5586
  __pyx_L3_error:;
5587
5587
 
5588
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
5588
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
5589
5589
  * try:
5590
5590
  * __pyx_import_array()
5591
5591
  * except Exception: # <<<<<<<<<<<<<<
@@ -5600,7 +5600,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
5600
5600
  __Pyx_XGOTREF(__pyx_t_6);
5601
5601
  __Pyx_XGOTREF(__pyx_t_7);
5602
5602
 
5603
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
5603
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
5604
5604
  * __pyx_import_array()
5605
5605
  * except Exception:
5606
5606
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -5615,7 +5615,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
5615
5615
  }
5616
5616
  goto __pyx_L5_except_error;
5617
5617
 
5618
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
5618
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
5619
5619
  * # Cython code.
5620
5620
  * cdef inline int import_array() except -1:
5621
5621
  * try: # <<<<<<<<<<<<<<
@@ -5631,7 +5631,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
5631
5631
  __pyx_L8_try_end:;
5632
5632
  }
5633
5633
 
5634
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
5634
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
5635
5635
  * # Versions of the import_* functions which are more suitable for
5636
5636
  * # Cython code.
5637
5637
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -5654,7 +5654,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
5654
5654
  return __pyx_r;
5655
5655
  }
5656
5656
 
5657
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
5657
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
5658
5658
  * raise ImportError("numpy.core.multiarray failed to import")
5659
5659
  *
5660
5660
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -5678,7 +5678,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
5678
5678
  int __pyx_clineno = 0;
5679
5679
  __Pyx_RefNannySetupContext("import_umath", 1);
5680
5680
 
5681
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
5681
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
5682
5682
  *
5683
5683
  * cdef inline int import_umath() except -1:
5684
5684
  * try: # <<<<<<<<<<<<<<
@@ -5694,7 +5694,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
5694
5694
  __Pyx_XGOTREF(__pyx_t_3);
5695
5695
  /*try:*/ {
5696
5696
 
5697
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
5697
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
5698
5698
  * cdef inline int import_umath() except -1:
5699
5699
  * try:
5700
5700
  * _import_umath() # <<<<<<<<<<<<<<
@@ -5703,7 +5703,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
5703
5703
  */
5704
5704
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 990, __pyx_L3_error)
5705
5705
 
5706
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
5706
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
5707
5707
  *
5708
5708
  * cdef inline int import_umath() except -1:
5709
5709
  * try: # <<<<<<<<<<<<<<
@@ -5717,7 +5717,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
5717
5717
  goto __pyx_L8_try_end;
5718
5718
  __pyx_L3_error:;
5719
5719
 
5720
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
5720
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
5721
5721
  * try:
5722
5722
  * _import_umath()
5723
5723
  * except Exception: # <<<<<<<<<<<<<<
@@ -5732,7 +5732,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
5732
5732
  __Pyx_XGOTREF(__pyx_t_6);
5733
5733
  __Pyx_XGOTREF(__pyx_t_7);
5734
5734
 
5735
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
5735
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
5736
5736
  * _import_umath()
5737
5737
  * except Exception:
5738
5738
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -5747,7 +5747,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
5747
5747
  }
5748
5748
  goto __pyx_L5_except_error;
5749
5749
 
5750
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
5750
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
5751
5751
  *
5752
5752
  * cdef inline int import_umath() except -1:
5753
5753
  * try: # <<<<<<<<<<<<<<
@@ -5763,7 +5763,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
5763
5763
  __pyx_L8_try_end:;
5764
5764
  }
5765
5765
 
5766
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
5766
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
5767
5767
  * raise ImportError("numpy.core.multiarray failed to import")
5768
5768
  *
5769
5769
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -5786,7 +5786,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
5786
5786
  return __pyx_r;
5787
5787
  }
5788
5788
 
5789
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
5789
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
5790
5790
  * raise ImportError("numpy.core.umath failed to import")
5791
5791
  *
5792
5792
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -5810,7 +5810,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5810
5810
  int __pyx_clineno = 0;
5811
5811
  __Pyx_RefNannySetupContext("import_ufunc", 1);
5812
5812
 
5813
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
5813
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
5814
5814
  *
5815
5815
  * cdef inline int import_ufunc() except -1:
5816
5816
  * try: # <<<<<<<<<<<<<<
@@ -5826,7 +5826,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5826
5826
  __Pyx_XGOTREF(__pyx_t_3);
5827
5827
  /*try:*/ {
5828
5828
 
5829
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
5829
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
5830
5830
  * cdef inline int import_ufunc() except -1:
5831
5831
  * try:
5832
5832
  * _import_umath() # <<<<<<<<<<<<<<
@@ -5835,7 +5835,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5835
5835
  */
5836
5836
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 996, __pyx_L3_error)
5837
5837
 
5838
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
5838
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
5839
5839
  *
5840
5840
  * cdef inline int import_ufunc() except -1:
5841
5841
  * try: # <<<<<<<<<<<<<<
@@ -5849,7 +5849,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5849
5849
  goto __pyx_L8_try_end;
5850
5850
  __pyx_L3_error:;
5851
5851
 
5852
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
5852
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
5853
5853
  * try:
5854
5854
  * _import_umath()
5855
5855
  * except Exception: # <<<<<<<<<<<<<<
@@ -5864,7 +5864,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5864
5864
  __Pyx_XGOTREF(__pyx_t_6);
5865
5865
  __Pyx_XGOTREF(__pyx_t_7);
5866
5866
 
5867
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
5867
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
5868
5868
  * _import_umath()
5869
5869
  * except Exception:
5870
5870
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -5879,7 +5879,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5879
5879
  }
5880
5880
  goto __pyx_L5_except_error;
5881
5881
 
5882
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
5882
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
5883
5883
  *
5884
5884
  * cdef inline int import_ufunc() except -1:
5885
5885
  * try: # <<<<<<<<<<<<<<
@@ -5895,7 +5895,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5895
5895
  __pyx_L8_try_end:;
5896
5896
  }
5897
5897
 
5898
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
5898
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
5899
5899
  * raise ImportError("numpy.core.umath failed to import")
5900
5900
  *
5901
5901
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -5918,7 +5918,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5918
5918
  return __pyx_r;
5919
5919
  }
5920
5920
 
5921
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
5921
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
5922
5922
  *
5923
5923
  *
5924
5924
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -5929,7 +5929,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5929
5929
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
5930
5930
  int __pyx_r;
5931
5931
 
5932
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1013
5932
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1013
5933
5933
  * bool
5934
5934
  * """
5935
5935
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -5939,7 +5939,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
5939
5939
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
5940
5940
  goto __pyx_L0;
5941
5941
 
5942
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
5942
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
5943
5943
  *
5944
5944
  *
5945
5945
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -5952,7 +5952,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
5952
5952
  return __pyx_r;
5953
5953
  }
5954
5954
 
5955
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
5955
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
5956
5956
  *
5957
5957
  *
5958
5958
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -5963,7 +5963,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
5963
5963
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
5964
5964
  int __pyx_r;
5965
5965
 
5966
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1028
5966
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1028
5967
5967
  * bool
5968
5968
  * """
5969
5969
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -5973,7 +5973,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
5973
5973
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
5974
5974
  goto __pyx_L0;
5975
5975
 
5976
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
5976
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
5977
5977
  *
5978
5978
  *
5979
5979
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -5986,7 +5986,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
5986
5986
  return __pyx_r;
5987
5987
  }
5988
5988
 
5989
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
5989
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
5990
5990
  *
5991
5991
  *
5992
5992
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5997,7 +5997,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
5997
5997
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
5998
5998
  npy_datetime __pyx_r;
5999
5999
 
6000
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1038
6000
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1038
6001
6001
  * also needed. That can be found using `get_datetime64_unit`.
6002
6002
  * """
6003
6003
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -6007,7 +6007,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
6007
6007
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
6008
6008
  goto __pyx_L0;
6009
6009
 
6010
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
6010
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
6011
6011
  *
6012
6012
  *
6013
6013
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -6020,7 +6020,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
6020
6020
  return __pyx_r;
6021
6021
  }
6022
6022
 
6023
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
6023
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
6024
6024
  *
6025
6025
  *
6026
6026
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -6031,7 +6031,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
6031
6031
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
6032
6032
  npy_timedelta __pyx_r;
6033
6033
 
6034
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1045
6034
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1045
6035
6035
  * returns the int64 value underlying scalar numpy timedelta64 object
6036
6036
  * """
6037
6037
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -6041,7 +6041,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
6041
6041
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
6042
6042
  goto __pyx_L0;
6043
6043
 
6044
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
6044
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
6045
6045
  *
6046
6046
  *
6047
6047
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -6054,7 +6054,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
6054
6054
  return __pyx_r;
6055
6055
  }
6056
6056
 
6057
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
6057
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
6058
6058
  *
6059
6059
  *
6060
6060
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -6065,7 +6065,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
6065
6065
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
6066
6066
  NPY_DATETIMEUNIT __pyx_r;
6067
6067
 
6068
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1052
6068
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1052
6069
6069
  * returns the unit part of the dtype for a numpy datetime64 object.
6070
6070
  * """
6071
6071
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -6073,7 +6073,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
6073
6073
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
6074
6074
  goto __pyx_L0;
6075
6075
 
6076
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
6076
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
6077
6077
  *
6078
6078
  *
6079
6079
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19196,7 +19196,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
19196
19196
  __Pyx_RefNannyDeclarations
19197
19197
  __Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0);
19198
19198
 
19199
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19199
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19200
19200
  * __pyx_import_array()
19201
19201
  * except Exception:
19202
19202
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -19207,7 +19207,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
19207
19207
  __Pyx_GOTREF(__pyx_tuple_);
19208
19208
  __Pyx_GIVEREF(__pyx_tuple_);
19209
19209
 
19210
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19210
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19211
19211
  * _import_umath()
19212
19212
  * except Exception:
19213
19213
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<