Eugene Toder
Eugene Toder
# Documentation The [tutorial for Argument Clinic](https://devguide.python.org/development-tools/clinic/#tutorial) in the devguide contains an outdated section. It still describes the early implementation that used to generate calls to PyArg_ParseTuple*() functions. This is...
Mostly in the documentation.
Also, move common functionality into SwapRateHelperBase to avoid duplication. Reuse it between vanilla and overnight swaps.
As far as I can tell, currently green only uploads sdist to pypi: https://pypi.org/simple/green/ This makes the installation slower, as everyone has to build their own wheels on demand. It...
Upstream QuantLib is moving from boost classes to std classes for shared_ptr, optional, etc. To ease the transition they added the ext:: namespace which has aliases to either boost or...
x-additionalPropertiesName is a Redocly extension to display more descriptive property names in objects with additionalProperties[1]. This allows generating nicer looking and more informative documentation and examples than Swagger UI's current...
Branch coverage parsing is only implemented for the xml coverage format. If there is interest, I can look into parsing the text format as well.
`LevenbergMarquardt` currently accepts `xtol` and `gtol` arguments in the constructor. These are passed as the respective arguments into the `MINPACK::lmdif()` call. These appear to be duplicates of `rootEpsilon` and `gradientNormEpsilon`...
Extend the fix for #73 to include inherited methods: copy all test methods from the original class into generated classes and set them to None in the original class. This...