Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help

The search service can find package by either name (apache), provides(webserver), absolute file names (/usr/bin/apache), binaries (gprof) or shared libraries (libXm.so.2) in standard path. It does not support multiple arguments yet...

The System and Arch are optional added filters, for example System could be "redhat", "redhat-7.2", "mandrake" or "gnome", Arch could be "i386" or "src", etc. depending on your system.

System Arch

RPM resource python312-cymem

cymem provides two small memory-management helpers for Cython. They make it easy to tie memory to a Python object's life-cycle, so that the memory is freed when the object is garbage collected. The most useful is `cymem.Pool`, which acts as a thin wrapper around the calloc function: ```python from cymem.cymem cimport Pool cdef Pool mem = Pool() data1 = <int*>mem.alloc(10, sizeof(int)) data2 = <float*>mem.alloc(12, sizeof(float)) ``` The `Pool` object saves the memory addresses internally, and frees them when the object is garbage collected. Typically you'll attach the `Pool` to some cdef'd class. This is particularly handy for deeply nested structs, which have complicated initialization functions. Just pass the `Pool` object into the initializer, and you don't have to worry about freeing your struct at all — all of the calls to `Pool.alloc` will be automatically freed when the `Pool` expires.

Found 1 sites for python312-cymem

Found 8 RPM for python312-cymem

PackageSummaryDistributionDownload
python312-cymem-2.0.8-1.6.i586.htmlManage calls to calloc/free through CythonOpenSuSE Ports Tumbleweed for i586python312-cymem-2.0.8-1.6.i586.rpm
python312-cymem-2.0.8-1.5.x86_64.htmlManage calls to calloc/free through CythonOpenSuSE Tumbleweed for x86_64python312-cymem-2.0.8-1.5.x86_64.rpm
python312-cymem-2.0.8-1.4.aarch64.htmlManage calls to calloc/free through CythonOpenSuSE Ports Tumbleweed for aarch64python312-cymem-2.0.8-1.4.aarch64.rpm
python312-cymem-2.0.8-1.4.armv6hl.htmlManage calls to calloc/free through CythonOpenSuSE Ports Tumbleweed for armv6hlpython312-cymem-2.0.8-1.4.armv6hl.rpm
python312-cymem-2.0.8-1.4.armv7hl.htmlManage calls to calloc/free through CythonOpenSuSE Ports Tumbleweed for armv7hlpython312-cymem-2.0.8-1.4.armv7hl.rpm
python312-cymem-2.0.8-1.3.ppc64le.htmlManage calls to calloc/free through CythonOpenSuSE Ports Tumbleweed for ppc64lepython312-cymem-2.0.8-1.3.ppc64le.rpm
python312-cymem-2.0.8-1.3.riscv64.htmlManage calls to calloc/free through CythonOpenSuSE Ports Tumbleweed for riscv64python312-cymem-2.0.8-1.3.riscv64.rpm
python312-cymem-2.0.8-1.3.s390x.htmlManage calls to calloc/free through CythonOpenSuSE Ports Tumbleweed for s390xpython312-cymem-2.0.8-1.3.s390x.rpm

Generated by rpm2html 1.6

Fabrice Bellet