Skip to content

Commit 3d93992

Browse files
committed
Remove use of @cython.freelist since the number of instances for a builtin is not easily guessable...
1 parent 6f3472a commit 3d93992

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/godot/builtins_pxd/class.pxd.j2

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55

66
{% macro render_class(builtin) %}
7-
@cython.freelist(8)
87
@cython.final
98
cdef class {{ builtin.cy_type }}:
109
cdef {{builtin.c_type }} _gd_data

src/godot/builtins_pyx/class.pyx.j2

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ class {{ builtin.cy_type }}{{ e.original_name }}(IntEnum):
2929

3030

3131
{% endfor %}
32-
@cython.freelist(8)
3332
@cython.final
3433
cdef class {{ builtin.cy_type }}:
3534
# Constructors

0 commit comments

Comments
 (0)