Clay Sweetser

Results 40 issues of Clay Sweetser

Add static analysis functionality to the generator, in case runtime analysis is not possible.

Currently, the library can only be built on Windows if one uses Mingw (and presumably Cygwin). It would be nice to have other build options utilizing Visual Studio (if possible)....

To the best of my knowledge, all string types used throughout the library are standard ASCII character types. Since this is a library based on string manipulation, we should probably...

From my investigations into https://github.com/Varriount/NimLime/pull/121 , I've found that AutomaticPackageReloader doesn't appear to call the plugin_loaded function on target modules. This function needs to be called, as several plugins perform...

So after reading the reasons why my first proposal of a single Optimization Macro parsing the entire file was unfeasible, I got to thinking of better (and possibly more pythonic)...

Assuming this library is still maintained, and just isn't updated because is feature-complete and free of known bugs, it would probably be good to put a note about that in...

It would be nice if the following schema gave a better path to the error: ```python s = Schema({ 'this': { 'that': Any( ['the'], {'thine': 'thou'} ) } }) s({'this':...

Nimble should have some way to automatically select between 32 and 64 bit installations/builds, otherwise those users who have dual 32/64 bit builds of nimrod face complications when building and...

Feature
Low Priority

Currently, if one wants to use bash variables with augtool, one must take care to escape any quotes in the variable, and interpolate the variable directly in the command string....

Currently shfmt strips trailing spaces between the last word of line and a backslash: ``` a_command \ with \ many \ options \ and \ arguments ``` becomes ``` a_command...