Cython 3.2.2__py3-none-any.whl → 3.2.3__py3-none-any.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.
Cython/Build/Cythonize.py CHANGED
@@ -12,10 +12,8 @@ from ..Compiler import Options
12
12
 
13
13
  try:
14
14
  import multiprocessing
15
- parallel_compiles = int(multiprocessing.cpu_count() * 1.5)
16
15
  except ImportError:
17
16
  multiprocessing = None
18
- parallel_compiles = 0
19
17
 
20
18
 
21
19
  def find_package_base(path):
@@ -85,7 +83,8 @@ def _build(ext_modules, parallel):
85
83
  if not modcount:
86
84
  return
87
85
 
88
- serial_execution_mode = modcount == 1 or parallel < 2
86
+ serial_execution_mode = modcount == 1 or (
87
+ parallel is not None and parallel < 2)
89
88
 
90
89
  try:
91
90
  pool_cm = (
@@ -248,8 +247,8 @@ Environment variables:
248
247
  help="use CODESTRING as pre-benchmark setup code for --bench")
249
248
 
250
249
  parser.add_argument('-j', '--parallel', dest='parallel', metavar='N',
251
- type=int, default=parallel_compiles,
252
- help=f'run builds in N parallel jobs (default: {parallel_compiles or 1})')
250
+ type=int, default=None,
251
+ help='run builds in N parallel jobs (default: CPU count)')
253
252
  parser.add_argument('-f', '--force', dest='force', action='store_true', default=None,
254
253
  help='force recompilation')
255
254
  parser.add_argument('-q', '--quiet', dest='quiet', action='store_true', default=None,
@@ -1,6 +1,5 @@
1
1
  from Cython.Build.Cythonize import (
2
2
  create_args_parser, parse_args_raw, parse_args,
3
- parallel_compiles
4
3
  )
5
4
 
6
5
  from Cython.Compiler import Options
@@ -22,7 +21,9 @@ class TestCythonizeArgsParser(TestCase):
22
21
  def are_default(self, options, skip):
23
22
  # empty containers
24
23
  empty_containers = ['directives', 'compile_time_env', 'options', 'excludes']
25
- are_none = ['language_level', 'annotate', 'build', 'build_inplace', 'force', 'quiet', 'lenient', 'keep_going', 'no_docstrings']
24
+ are_none = [
25
+ 'language_level', 'annotate', 'build', 'build_inplace', 'force', 'quiet', 'lenient', 'keep_going', 'no_docstrings', 'parallel'
26
+ ]
26
27
  for opt_name in empty_containers:
27
28
  if len(getattr(options, opt_name))!=0 and (opt_name not in skip):
28
29
  self.assertEqual(opt_name,"", msg="For option "+opt_name)
@@ -31,8 +32,6 @@ class TestCythonizeArgsParser(TestCase):
31
32
  if (getattr(options, opt_name) is not None) and (opt_name not in skip):
32
33
  self.assertEqual(opt_name,"", msg="For option "+opt_name)
33
34
  return False
34
- if options.parallel!=parallel_compiles and ('parallel' not in skip):
35
- return False
36
35
  return True
37
36
 
38
37
  # testing directives:
@@ -979,6 +979,17 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
979
979
  code.putln("#endif")
980
980
  code.putln("")
981
981
 
982
+ code.putln("#ifdef CYTHON_FREETHREADING_COMPATIBLE")
983
+ code.putln("#if CYTHON_FREETHREADING_COMPATIBLE")
984
+ code.putln("#define __Pyx_FREETHREADING_COMPATIBLE Py_MOD_GIL_NOT_USED")
985
+ code.putln("#else")
986
+ code.putln("#define __Pyx_FREETHREADING_COMPATIBLE Py_MOD_GIL_USED")
987
+ code.putln("#endif")
988
+ code.putln("#else")
989
+ ft_compatible = "Py_MOD_GIL_NOT_USED" if env.directives["freethreading_compatible"] else "Py_MOD_GIL_USED"
990
+ code.putln(f"#define __Pyx_FREETHREADING_COMPATIBLE {ft_compatible}")
991
+ code.putln("#endif")
992
+
982
993
  c_string_type = env.directives['c_string_type']
983
994
  c_string_encoding = env.directives['c_string_encoding']
984
995
  if c_string_type not in ('bytes', 'bytearray') and not c_string_encoding:
@@ -3628,10 +3639,7 @@ class ModuleNode(Nodes.Node, Nodes.BlockNode):
3628
3639
  code.putln("{Py_mod_create, (void*)%s}," % Naming.pymodule_create_func_cname)
3629
3640
  code.putln("{Py_mod_exec, (void*)%s}," % exec_func_cname)
3630
3641
  code.putln("#if CYTHON_COMPILING_IN_CPYTHON_FREETHREADING")
3631
- gil_option = ("Py_MOD_GIL_NOT_USED"
3632
- if env.directives["freethreading_compatible"]
3633
- else "Py_MOD_GIL_USED")
3634
- code.putln("{Py_mod_gil, %s}," % gil_option)
3642
+ code.putln("{Py_mod_gil, __Pyx_FREETHREADING_COMPATIBLE},")
3635
3643
  code.putln("#endif")
3636
3644
  code.putln("#if PY_VERSION_HEX >= 0x030C0000 && CYTHON_USE_MODULE_STATE")
3637
3645
  subinterp_option = {
@@ -101,7 +101,7 @@ cdef extern from *: # Hard-coded utility code hack.
101
101
  arraydescr* ob_descr # struct arraydescr *ob_descr;
102
102
 
103
103
  @property
104
- cdef inline __data_union data(self) nogil:
104
+ cdef inline __data_union data(self) noexcept nogil:
105
105
  return __Pyx_PyArray_Data(self)
106
106
 
107
107
  def __getbuffer__(self, Py_buffer* info, int flags):
@@ -134,7 +134,7 @@ cdef extern from *: # Hard-coded utility code hack.
134
134
 
135
135
  array newarrayobject(PyTypeObject* type, Py_ssize_t size, arraydescr *descr)
136
136
 
137
- __data_union __Pyx_PyArray_Data(array self) nogil
137
+ __data_union __Pyx_PyArray_Data(array self) noexcept nogil
138
138
  # fast resize/realloc
139
139
  # not suitable for small increments; reallocation 'to the point'
140
140
  int resize(array self, Py_ssize_t n) except -1
@@ -1,5 +1,38 @@
1
1
  from .object cimport PyObject
2
2
 
3
+ cdef extern from *:
4
+ # Backport PyList_GetItemRef, PyList_Extend and PyList_Clear
5
+ """
6
+ #if __PYX_LIMITED_VERSION_HEX < 0x030d0000
7
+ static CYTHON_INLINE PyObject *
8
+ __Pyx_CAPI_PyList_GetItemRef(PyObject *list, Py_ssize_t index)
9
+ {
10
+ PyObject *item = PyList_GetItem(list, index);
11
+ Py_XINCREF(item);
12
+ return item;
13
+ }
14
+ #else
15
+ #define __Pyx_CAPI_PyList_GetItemRef PyList_GetItemRef
16
+ #endif
17
+
18
+ #if CYTHON_COMPILING_IN_LIMITED_API || PY_VERSION_HEX < 0x030d0000
19
+ static CYTHON_INLINE int
20
+ __Pyx_CAPI_PyList_Extend(PyObject *list, PyObject *iterable)
21
+ {
22
+ return PyList_SetSlice(list, PY_SSIZE_T_MAX, PY_SSIZE_T_MAX, iterable);
23
+ }
24
+
25
+ static CYTHON_INLINE int
26
+ __Pyx_CAPI_PyList_Clear(PyObject *list)
27
+ {
28
+ return PyList_SetSlice(list, 0, PY_SSIZE_T_MAX, NULL);
29
+ }
30
+ #else
31
+ #define __Pyx_CAPI_PyList_Extend PyList_Extend
32
+ #define __Pyx_CAPI_PyList_Clear PyList_Clear
33
+ #endif
34
+ """
35
+
3
36
  cdef extern from "Python.h":
4
37
 
5
38
  ############################################################################
@@ -29,12 +62,17 @@ cdef extern from "Python.h":
29
62
  Py_ssize_t PyList_GET_SIZE(object list)
30
63
  # Macro form of PyList_Size() without error checking.
31
64
 
65
+ object PyList_GetItemRef "__Pyx_CAPI_PyList_GetItemRef" (object list, Py_ssize_t index)
66
+ # Return value: New reference.
67
+ # Return the object at position index in the list pointed to by list.
68
+ # The position must be non-negative; indexing from the end of the
69
+ # list is not supported. If index is out of bounds (<0 or >=len(list)),
70
+ # return NULL and set an IndexError exception.
71
+
32
72
  PyObject* PyList_GetItem(object list, Py_ssize_t index) except NULL
33
73
  # Return value: Borrowed reference.
34
- # Return the object at position pos in the list pointed to by
35
- # p. The position must be positive, indexing from the end of the
36
- # list is not supported. If pos is out of bounds, return NULL and
37
- # set an IndexError exception.
74
+ # Like PyList_GetItemRef(), but returns a borrowed reference instead of
75
+ # a strong reference.
38
76
 
39
77
  PyObject* PyList_GET_ITEM(object list, Py_ssize_t i)
40
78
  # Return value: Borrowed reference.
@@ -78,6 +116,20 @@ cdef extern from "Python.h":
78
116
  # may be NULL, indicating the assignment of an empty list (slice
79
117
  # deletion). Return 0 on success, -1 on failure.
80
118
 
119
+ int PyList_Extend "__Pyx_CAPI_PyList_Extend" (object list, object iterable) except -1
120
+ # Extend list with the contents of iterable. This is the same as
121
+ # PyList_SetSlice(list, PY_SSIZE_T_MAX, PY_SSIZE_T_MAX, iterable)
122
+ # and analogous to list.extend(iterable) or list += iterable.
123
+ # Raise an exception and return -1 if list is not a list object.
124
+ # Return 0 on success.
125
+
126
+ int PyList_Clear "__Pyx_CAPI_PyList_Clear" (object list) except -1
127
+ # Remove all items from list. This is the same as
128
+ # PyList_SetSlice(list, 0, PY_SSIZE_T_MAX, NULL) and analogous
129
+ # to list.clear() or del list[:].
130
+ # Raise an exception and return -1 if list is not a list object.
131
+ # Return 0 on success.
132
+
81
133
  int PyList_Sort(object list) except -1
82
134
  # Sort the items of list in place. Return 0 on success, -1 on
83
135
  # failure. This is equivalent to "list.sort()".
Cython/Shadow.py CHANGED
@@ -1,7 +1,7 @@
1
1
  # cython.* namespace for pure mode.
2
2
 
3
3
  # Possible version formats: "3.1.0", "3.1.0a1", "3.1.0a1.dev0"
4
- __version__ = "3.2.2"
4
+ __version__ = "3.2.3"
5
5
 
6
6
 
7
7
  # BEGIN shameless copy from Cython/minivect/minitypes.py
@@ -1572,10 +1572,7 @@ __pyx_err:;
1572
1572
 
1573
1573
  if (likely(unbound_result_func)) {
1574
1574
  if (self->self) {
1575
- __pyx_FusedFunctionObject *unbound = (__pyx_FusedFunctionObject *) unbound_result_func;
1576
-
1577
- // TODO: move this to InitClassCell
1578
- __Pyx_CyFunction_SetClassObj(unbound, __Pyx_CyFunction_GetClassObj(self));
1575
+ assert(__Pyx_CyFunction_GetClassObj(unbound_result_func) == __Pyx_CyFunction_GetClassObj(self));
1579
1576
 
1580
1577
  result_func = __pyx_FusedFunction_descr_get(unbound_result_func,
1581
1578
  self->self, self->self);
@@ -1673,7 +1670,7 @@ __pyx_FusedFunction_call(PyObject *func, PyObject *args, PyObject *kw)
1673
1670
  if (unlikely(!new_func))
1674
1671
  goto bad;
1675
1672
 
1676
- __Pyx_CyFunction_SetClassObj(new_func, __Pyx_CyFunction_GetClassObj(binding_func));
1673
+ assert(__Pyx_CyFunction_GetClassObj(new_func) == __Pyx_CyFunction_GetClassObj(binding_func));
1677
1674
 
1678
1675
  func = (PyObject *) new_func;
1679
1676
  }
Cython/Utility/TString.c CHANGED
@@ -17,8 +17,10 @@ Py_VISIT((PyObject*)traverse_module_state->__pyx_templatelib_Interpolation);
17
17
 
18
18
  //////////////////////////// InitializeTemplateLib.module_state_clear ////////////////////////////
19
19
 
20
- Py_CLEAR((PyObject*)traverse_module_state->__pyx_templatelib_Template);
21
- Py_CLEAR((PyObject*)traverse_module_state->__pyx_templatelib_Interpolation)
20
+ Py_XDECREF((PyObject*)clear_module_state->__pyx_templatelib_Template);
21
+ clear_module_state->__pyx_templatelib_Template = 0;
22
+ Py_XDECREF((PyObject*)clear_module_state->__pyx_templatelib_Interpolation);
23
+ clear_module_state->__pyx_templatelib_Interpolation = 0;
22
24
 
23
25
  //////////////////////////// InitializeTemplateLib.proto ///////////////////////////
24
26
 
@@ -325,7 +327,7 @@ static PyObject* __Pyx_MakeTemplateLibTemplate(PyObject *strings, PyObject *inte
325
327
  #endif
326
328
  zipped_tuple = PyTuple_New(strings_len + interpolations_len);
327
329
  if (!zipped_tuple) goto end;
328
- for (Py_ssize_t i=0; (i<interpolations_len && i<strings_len); ++i) {
330
+ for (Py_ssize_t i=0; (i<interpolations_len || i<strings_len); ++i) {
329
331
  if (i < strings_len) {
330
332
  PyObject *s = __Pyx_PyTuple_GET_ITEM(strings, i);
331
333
  #if !CYTHON_ASSUME_SAFE_MACROS
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: Cython
3
- Version: 3.2.2
3
+ Version: 3.2.3
4
4
  Summary: The Cython compiler for writing C extensions in the Python language.
5
5
  Home-page: https://cython.org/
6
6
  Author: Robert Bradshaw, Stefan Behnel, David Woods, Greg Ewing, et al.
@@ -65,39 +65,32 @@ to install an uncompiled (slower) version of Cython with::
65
65
 
66
66
  .. _Pyrex: https://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/
67
67
 
68
- 3.2.2 (2025-11-30)
68
+ 3.2.3 (2025-12-14)
69
69
  ==================
70
70
 
71
71
  Features added
72
72
  --------------
73
73
 
74
- * The C-API declarations were updated to include the new ``PyDict_*Ref()`` functions.
74
+ * The C-API declarations were updated to include the new ``PyList_*()`` functions.
75
75
  (Github issue https://github.com/cython/cython/issues/7291)
76
76
 
77
+ * The ``Py_mod_gil`` module setting can now be changed with a C macro, overriding
78
+ the ``freethreading_compatible`` directive setting.
79
+ (Github issue https://github.com/cython/cython/issues/7404)
80
+
77
81
  Bugs fixed
78
82
  ----------
79
83
 
80
- * Iteration over literal sequences and strings in generators generated invalid C code since 3.2.0.
81
- This was a regression due to the C array iteration optimisation in https://github.com/cython/cython/issues/6926, which is now
82
- disabled inside of generators.
83
- (Github issue https://github.com/cython/cython/issues/7342)
84
-
85
- * Calling special methods of known exception types failed with an ``AttributeError``.
86
- (Github issue https://github.com/cython/cython/issues/7342)
87
-
88
- * Calling the unbound ``__mul__`` special method of builtin collections with subtypes failed.
89
- (Github issue https://github.com/cython/cython/issues/7340)
90
-
91
- * C string literals could generate invalid "const to non-const" casts in the C code.
92
- (Github issue https://github.com/cython/cython/issues/7346)
84
+ * t-strings lost the last element when compiled for the Limited API.
85
+ (Github issue https://github.com/cython/cython/issues/7381)
93
86
 
94
- * ``yield`` is no longer allowed inside of a ``cython.critical_section``,
95
- but *is* now allowed while holding a ``cython.pymutex``.
96
- (Github issue https://github.com/cython/cython/issues/7317)
87
+ * The ``array.data`` property of the ``cpython.array`` declarations generated a
88
+ useless exception check that degraded its use in ``nogil`` code.
89
+ (Github issue https://github.com/cython/cython/issues/7408)
97
90
 
98
- * Under lock congestion, acquiring the GIL could crash in Python 3.11, part 2.
99
- This bug was introduced in Cython 3.2.0.
100
- (Github issue https://github.com/cython/cython/issues/7312)
91
+ * Parallel builds with the ``cythonize`` command could request more processes
92
+ than allowed by the platform, thus failing the build.
93
+ (Github issue https://github.com/cython/cython/issues/7384)
101
94
 
102
- * The new ``py_safe_*`` functions in ``libc.threads`` triggered C compiler warnings.
103
- (Github issue https://github.com/cython/cython/issues/7356)
95
+ * A minor thread sanitizer issue was resolved.
96
+ (Github issue https://github.com/cython/cython/issues/7383)
@@ -2,7 +2,7 @@ cython.py,sha256=OTJCP0F_fecQWMsGOPJDuFU7brM1ScJAATH6ek98ho4,632
2
2
  Cython/CodeWriter.py,sha256=k1SAPvsjXum7dhX9IjZ3wXuDUOzzFKYEbNZSxMKEwos,24276
3
3
  Cython/Coverage.py,sha256=WGY5BW1nBcJ86f4Lrs6ZZIuFKCdngsEizs4Kor0iRsc,18783
4
4
  Cython/Debugging.py,sha256=vFtJhn7QstMf5gnYru2qHIz5ZjPg1KSlZVGHr-pBCwM,552
5
- Cython/Shadow.py,sha256=HhmXZxYWwK_CprThLjdsHQr4r_5bpNKp7bfWjq6fJK0,19632
5
+ Cython/Shadow.py,sha256=0K9vhws2gEekhrPAMzDGYmZK0Dp6oMu6hDUoY-if268,19632
6
6
  Cython/Shadow.pyi,sha256=BaaRtWtFlBVM14LOD9ql-9Uw1UDZV3AOT2AWULk1WUw,18597
7
7
  Cython/StringIOTree.py,sha256=8u4R5jhUzqYvSX1w5_RrvxbgUvaMqW8jhQgXcCNKIkE,5570
8
8
  Cython/TestUtils.py,sha256=rph07UD41dNbdOjqQx_vNu2c0b3Ib1UeMxNYao_vxJU,15584
@@ -12,7 +12,7 @@ Cython/__init__.pyi,sha256=b6tWj5MgrMJz8EAV9MOqTbaFGvIxCOzH2bBkhrC80GU,185
12
12
  Cython/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
13
  Cython/Build/BuildExecutable.py,sha256=OhySP6G2ppkA_Tzutv2Mvxt3YyhViy_aU7vAeGCjEbY,4742
14
14
  Cython/Build/Cache.py,sha256=kdxcA-x7-hck6K6VuMajP4pYMWQH_4pkzwvk5qOawiE,6855
15
- Cython/Build/Cythonize.py,sha256=T0FMC7GTT5-4RKsOTeqJ6mJHZ1O7AS3PHPGZQVvl5bQ,13557
15
+ Cython/Build/Cythonize.py,sha256=9dYCW_To76B0wZA5GO3DNWjZn8PllkFvef-X7d-nbRc,13475
16
16
  Cython/Build/Dependencies.py,sha256=eY-zCjgd_ENgIErJw-yGVzv4lWveeNhljFaRcFN4wMw,51710
17
17
  Cython/Build/Distutils.py,sha256=iO5tPX84Kc-ZWMocfuQbl_PqyC9HGGIRS-NiKI60-ZE,49
18
18
  Cython/Build/Inline.py,sha256=hcRhJJ8XWRYZJ7eGW8P-Yh5DhWCQm2Hxr9Im7WP352g,16298
@@ -20,7 +20,7 @@ Cython/Build/IpythonMagic.py,sha256=X11ClQS2psBcjnI4S1Ovyz_3sW8xEjRqXIh-44ycdek,
20
20
  Cython/Build/SharedModule.py,sha256=6WL0f3NxG2SwRy_humjasLk-FpsbY-ukK4iopuGsE0s,3666
21
21
  Cython/Build/__init__.py,sha256=UCsI8hI_a75i0iWwZQfuaoKTH5LW6z2b5GhN9QaJ0zo,339
22
22
  Cython/Build/Tests/TestCyCache.py,sha256=0yu2hshimJNwdjnfbRZdxXWTfy_KkLuqJIugcBf3WeY,6554
23
- Cython/Build/Tests/TestCythonizeArgsParser.py,sha256=w8mw0sS_OV-8j1sdevv5wE28LZkhNFRmHdLcpddaCgE,20257
23
+ Cython/Build/Tests/TestCythonizeArgsParser.py,sha256=l7dgs39KO-ZPxQzRVccg3wvzQuBLOIi9hqB9jollw5c,20167
24
24
  Cython/Build/Tests/TestDependencies.py,sha256=E8yGrYy03JvVPwtYB7JGE-VOCWyYB2ZkQpXKTORpyps,5566
25
25
  Cython/Build/Tests/TestInline.py,sha256=pUvDhJOdgiHX0yeuZpKXnk4i3QxLzv9apwiVmdY1FLQ,5695
26
26
  Cython/Build/Tests/TestIpythonMagic.py,sha256=9GL8U_Jtyk-sAdEBzCS81RkVjxeM0Jrs2-zAhfFUb54,9004
@@ -51,7 +51,7 @@ Cython/Compiler/LineTable.py,sha256=epP6DoefUR7JCK9OUOyoYcxMWhBEwyTWOr3E7vJRqa4,
51
51
  Cython/Compiler/Main.py,sha256=8BCgxfGhYNGvhROKqV7ovifvQJvWn2xOQBB3uBiAZ5g,35011
52
52
  Cython/Compiler/MatchCaseNodes.py,sha256=yVGVAsc1yrda1jHTAI7mZ2-SL67tNdcfOn-ugdCRWPs,7792
53
53
  Cython/Compiler/MemoryView.py,sha256=pyy1oidHhmYAprfxjhX7fweDXzrxMkEbSICKFm2vd4o,31485
54
- Cython/Compiler/ModuleNode.py,sha256=7HAhU4H5VEeZxN42HGlq7dYRGA3faauucz3YsQmyULk,194712
54
+ Cython/Compiler/ModuleNode.py,sha256=KfHvXpp8G8S1i_1-xMwqzflqnDWMJRRSuvu0pZhGNWY,195154
55
55
  Cython/Compiler/Naming.py,sha256=xneFFCsB68xZhghXAxA2GnRrooWMumxss20B1I0avqk,11159
56
56
  Cython/Compiler/Nodes.py,sha256=SPMs4eHpOSsUakYl2NtNErXUZ_OwI5DRHcoWz12gRrg,454893
57
57
  Cython/Compiler/Optimize.py,sha256=CX-UEAmTqAc4JsMxpRsKPx_7yaaEzwewcxHc7c2Roq0,228209
@@ -113,7 +113,7 @@ Cython/Distutils/extension.py,sha256=hJ8VeNgGyxdz7Lke_Bg7FUkiC6mu9uNz9TosfXsfTaI
113
113
  Cython/Distutils/old_build_ext.py,sha256=T-0H1lPbaP1wa_YgV9JkattbYOhHDHqQ9gsWkqYkkd0,13723
114
114
  Cython/Includes/openmp.pxd,sha256=3GTRd5JH31CvfTzXErglXnyf_jye1Gvk9O4giTa6pc0,1712
115
115
  Cython/Includes/cpython/__init__.pxd,sha256=dUl8RHGxo-181oczdAl7vND_jkcMaHnK4A2ji1hJaos,8100
116
- Cython/Includes/cpython/array.pxd,sha256=yMNqxS6_3TlHriTDGZ3Gw_CBWMHZeP0W6tV26TJlhdI,6581
116
+ Cython/Includes/cpython/array.pxd,sha256=11nQbNFyD9ILmahlOHJUdUYRMDujOkaRW_8g2UG_RxY,6599
117
117
  Cython/Includes/cpython/bool.pxd,sha256=2_ouVZUNuCHLVxpNwzQ4bCExpZTj354KcQ0iRv48LZs,1358
118
118
  Cython/Includes/cpython/buffer.pxd,sha256=wm7aHygGUof_H3-JyICOek_xiU6Oks178ark1Nfk-a0,4870
119
119
  Cython/Includes/cpython/bytearray.pxd,sha256=00A4Jz669d43AirqCWwswlVxaykwj1f3zNgMSYOYD74,1453
@@ -136,7 +136,7 @@ Cython/Includes/cpython/getargs.pxd,sha256=268twKzdiAkQMXMsetNiNlNqaqzlKtiBENKbh
136
136
  Cython/Includes/cpython/instance.pxd,sha256=qCbxPeHKOJbuszDu3UEaI-KLX9lTopuaNCcpoHJ9ngU,985
137
137
  Cython/Includes/cpython/iterator.pxd,sha256=o52mLHbdm14Kqant2hR2zAdYzqK4fkSWZtBcRmpoP-I,1319
138
138
  Cython/Includes/cpython/iterobject.pxd,sha256=5UEZZwG5zyzxoCpknoQuh91zPUV11Uxr6F1taJdTv8k,1036
139
- Cython/Includes/cpython/list.pxd,sha256=HhnwchBGhPIAoObzIXyg33KqvSxBRveWoq34iZM508s,4096
139
+ Cython/Includes/cpython/list.pxd,sha256=jBR_a3d8sSamhIhMnhrgjkBCVJWI1iNc230JXLpCW88,6049
140
140
  Cython/Includes/cpython/long.pxd,sha256=1gN-O5AcV4B_r974qxW9YDr7NedDyDrTRjOelClvoyA,7047
141
141
  Cython/Includes/cpython/longintrepr.pxd,sha256=zHZAj59YfzjVn-acRB8D6AELEhkO2hsejtBB4gwzQrA,335
142
142
  Cython/Includes/cpython/mapping.pxd,sha256=DI5_kOp78IaYx77qIWpetu13iMEgGXZew84mTsCPYtM,2692
@@ -278,7 +278,7 @@ Cython/Utility/Coroutine.c,sha256=mnN1zdID44Jn-0qF5Bw17QA5gloWpO8JTjiF7ggzuF8,85
278
278
  Cython/Utility/CpdefEnums.pyx,sha256=TMXyfhDeip3zqatMgNEQTQiss41nnp-PzFGn78tgBAs,3531
279
279
  Cython/Utility/CppConvert.pyx,sha256=onbI09dQzC6ZJxvzosS-WuvweIeh3f0rd65Xor7G3AU,7317
280
280
  Cython/Utility/CppSupport.cpp,sha256=vR1G8qqdyLWTk4quKz5v6Z1syIMrfPldB9IzbwkYxDo,5464
281
- Cython/Utility/CythonFunction.c,sha256=BCAiHjYiVBWils4k776a4UvBaDmuE7OSOFkygPXPtZE,63367
281
+ Cython/Utility/CythonFunction.c,sha256=VJMWKfsT4-5-gj8POZFCxaEUO4awTN7zineBjTriNZI,63250
282
282
  Cython/Utility/Dataclasses.c,sha256=eCa9JHHg6bj-WSKw1xTDjazghmXAkMd9J5TnELNTVOI,4023
283
283
  Cython/Utility/Embed.c,sha256=P4JHaSwtj61hRVFgQBKyt3FaNJiBjJe-asLtsFtexGs,3439
284
284
  Cython/Utility/Exceptions.c,sha256=EV8TIZaCdQNo7CPGo6LPQYDYE1a06l2IOwEp6PIHLns,35793
@@ -298,7 +298,7 @@ Cython/Utility/Printing.c,sha256=h3F9eyCXSs284Y8DZRivKtoAOcx5jIYPeNFOSD59foc,289
298
298
  Cython/Utility/Profile.c,sha256=JPglBHCdnTtyGj0JKzPtfN0djAIe6P5FVAqBQt43RZo,41218
299
299
  Cython/Utility/StringTools.c,sha256=WQpQTBWSVYpNPUsVj2cXP_RgwcfyQ_NH-T70e65N59U,50848
300
300
  Cython/Utility/Synchronization.c,sha256=B3sJpm2UwNGkjWIeMDF8AqCgtttASNIPRXHvA7kXLKE,18675
301
- Cython/Utility/TString.c,sha256=UM3kg04oc0qq54ciFZd9X6Bk2acO1TqqZo89UtFvaoQ,13893
301
+ Cython/Utility/TString.c,sha256=8cAAcx70pSeYH9Xw98OPmYBUV1LtgwmIFr54Swvuqa0,14001
302
302
  Cython/Utility/TestCyUtilityLoader.pyx,sha256=91lWWJub7l_6xNn3ncrvQZZ94RpkQzEx2NtAaFpvrxY,152
303
303
  Cython/Utility/TestCythonScope.pyx,sha256=mWowHlHIs22w6xC5KAc8kelf2f2n6bhLapyqgz0JMpc,1999
304
304
  Cython/Utility/TestUtilityLoader.c,sha256=dGy6ZWL2kBqtmUY7kF75UEox5kadQZ__BmZKscwg2aY,279
@@ -310,8 +310,8 @@ Cython/Utility/arrayarray.h,sha256=hjXya3s-GoN4mKZTKUlyqPfT3tzf0GiansnSkUcWhk0,4
310
310
  pyximport/__init__.py,sha256=9hOyKolFtOerPiVEyktKrT1VtzbGexq9UmORzo52iHI,79
311
311
  pyximport/pyxbuild.py,sha256=AsL1tyLxG61Mj7Ah-DxtDBuaXF94W2Tb6KTos7r0w8I,5702
312
312
  pyximport/pyximport.py,sha256=BnXVwq1cwo1EYRjPU0J-RUDcwzGjUlzKWZOOMDNcu-s,18510
313
- cython-3.2.2.dist-info/METADATA,sha256=V5NnCFFDPGtyyFd9r4accPayqeK-dptDMeHgB8ulvyg,4746
314
- cython-3.2.2.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
315
- cython-3.2.2.dist-info/entry_points.txt,sha256=VU8NX8gnQyFbyqiWMzfh9BHvYMuoQRS3Nbm3kKcKQeY,139
316
- cython-3.2.2.dist-info/top_level.txt,sha256=jLV8tZV98iCbIfiJR4DVzTX5Ru1Y_pYMZ59wkMCe6SY,24
317
- cython-3.2.2.dist-info/RECORD,,
313
+ cython-3.2.3.dist-info/METADATA,sha256=8EoMsr6l320ZMH_ZMxMZUUzPLxRYB-B8v1zy8ZyDSiU,4285
314
+ cython-3.2.3.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
315
+ cython-3.2.3.dist-info/entry_points.txt,sha256=VU8NX8gnQyFbyqiWMzfh9BHvYMuoQRS3Nbm3kKcKQeY,139
316
+ cython-3.2.3.dist-info/top_level.txt,sha256=jLV8tZV98iCbIfiJR4DVzTX5Ru1Y_pYMZ59wkMCe6SY,24
317
+ cython-3.2.3.dist-info/RECORD,,
File without changes