Results 189 issues of Dustin Spicuzza

* On Linux, pyelftools can be used to find library dependencies * On Windows, pefile can be used to find DLL dependencies * On OSX, delocate can be used to...

### Problem description The sads. ### Operating System Windows ### Installed Python Packages _No response_ ### Reproducible example code _No response_

```c++ #pragma once class MMBase { public: explicit MMBase(int number, std::string name) : m_name(std::move(name)) {} virtual ~MMBase() = default; MMBase(const MMBase&) = delete; MMBase& operator=(const MMBase&) = delete; std::string getName()...

This would be useful for https://github.com/robotpy/robotpy-wpilib/pull/710 ... currently just have to inline stuff.

Similar to #149 , record this information in a .json file and use that to set the flag automatically. For now, will have to set it manually.

Indicate that the constructors exist in .json file, add them to the generated .hpp file?

Currently we define a list of list of template params, but should provide a way for each overload to have a unique name in case they're ambiguous.

Need to think through the right way to do this. Currently, we have to add depends for everything in the chain, which is a bit obnoxious. Probably should look at...

Let distutils try to save us some time? It's tricky because we try to delete all the generated files, so we'd need to keep track of this, and track hashes,...

enhancement