py-cpp-demangle icon indicating copy to clipboard operation
py-cpp-demangle copied to clipboard

A python package for demangling C++ linker symbols

Results 6 py-cpp-demangle issues
Sort by recently updated
recently updated
newest added

This PR adds support for the MSVC demangler crate: - https://crates.io/crates/msvc-demangler/0.9.0 This package now provides two API calls: - `demangle_itanium` (for the Itanium ABI; the current implementation) - `demangle_msvc` (for...

Hi, I extended the ci steps to also build and test for python 3.12. If you want me to change anything else please let me know.

So this code https://github.com/benfred/py-cpp-demangle/blob/44407c58a2ba044823385ce22c86fc1b23239587/src/lib.rs#L33 Is throwing a value error on these function names: `'_main', 'ctor_0', 'ctor_1', 'ctor_2', 'ctor_3', 'ctor_4', 'ctor_5', 'ctor_6', 'ctor_7', 'ctor_8', 'ctor_9', 'ctor_10', 'ctor_11', 'ctor_12', 'ctor_13', 'ctor_14', 'ctor_15',...

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.1.7. Release notes Sourced from actions/download-artifact's releases. v4.1.7 What's Changed Update @​actions/artifact dependency by @​bethanyj28 in actions/download-artifact#325 Full Changelog: https://github.com/actions/download-artifact/compare/v4.1.6...v4.1.7 v4.1.6 What's Changed updating @actions/artifact...

dependencies

When I run: `pip install cpp-demangle` I get this error: ```Getting requirements to build wheel ... error error: subprocess-exited-with-error × Getting requirements to build wheel did not run successfully. │...

As this package does not use any special part of the CPython interface, it can leverage the [stable abi](https://docs.python.org/3/c-api/stable.html#stable-abi), not needing version specific wheels. This supersedes #11. I also needed...