bocpy 0.2.1__tar.gz → 0.2.2__tar.gz
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.
- {bocpy-0.2.1/src/bocpy.egg-info → bocpy-0.2.2}/PKG-INFO +1 -1
- {bocpy-0.2.1 → bocpy-0.2.2}/pyproject.toml +1 -1
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy/_core.c +3 -1
- {bocpy-0.2.1 → bocpy-0.2.2/src/bocpy.egg-info}/PKG-INFO +1 -1
- {bocpy-0.2.1 → bocpy-0.2.2}/LICENSE.md +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/README.md +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/setup.cfg +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/setup.py +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy/__init__.py +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy/__init__.pyi +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy/_math.c +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy/behaviors.py +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy/examples/__init__.py +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy/examples/assets/cheese.txt +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy/examples/assets/menu.txt +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy/examples/bank.py +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy/examples/boids.py +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy/examples/calculator.py +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy/examples/cooking_boc.py +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy/examples/cooking_threads.py +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy/examples/dining_philosophers.py +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy/examples/fibonacci.py +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy/examples/primes.py +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy/examples/sketches.py +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy/py.typed +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy/transpiler.py +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy/worker.py +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy.egg-info/SOURCES.txt +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy.egg-info/dependency_links.txt +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy.egg-info/entry_points.txt +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy.egg-info/requires.txt +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/src/bocpy.egg-info/top_level.txt +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/test/test_boc.py +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/test/test_matrix.py +0 -0
- {bocpy-0.2.1 → bocpy-0.2.2}/test/test_message_queue.py +0 -0
|
@@ -969,6 +969,8 @@ static void BOCRecycleQueue_recycle(BOCRecycleQueue *queue, XIDATA_T *xidata) {
|
|
|
969
969
|
queue->index);
|
|
970
970
|
}
|
|
971
971
|
|
|
972
|
+
Py_DECREF(xidata_ptr);
|
|
973
|
+
|
|
972
974
|
// manual clear
|
|
973
975
|
if (xidata->data != NULL) {
|
|
974
976
|
if (xidata->free != NULL) {
|
|
@@ -978,7 +980,7 @@ static void BOCRecycleQueue_recycle(BOCRecycleQueue *queue, XIDATA_T *xidata) {
|
|
|
978
980
|
}
|
|
979
981
|
|
|
980
982
|
Py_CLEAR(xidata->obj);
|
|
981
|
-
PyMem_RawFree(xidata
|
|
983
|
+
PyMem_RawFree(xidata);
|
|
982
984
|
}
|
|
983
985
|
|
|
984
986
|
/// @brief Enqeues an xidata on the recycling queue.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|