Jon Crall
Jon Crall
Its a problem with the parser. The following example also fails: ```python tab = '\t' string = utils.codeblock( f''' >>> text = "tab{tab}sep{tab}val" ''') self = parser.DoctestParser() parts = self.parse(string)...
I believe this was fixed in 1.3.0
This seems like xdoctest might need to implement its own version of `catch_warnings`. I think through this idea in this thread: https://discuss.python.org/t/capturing-custom-formatwarning-with-warnings-catch-warnings-record-true/83807
Now that I understand why this highlighting is happening, I'm in a better position to actually use it. I've installed a sitecustomize config into my venv site-packages, and I'm wondering...
I forgot that I did `TargetSpace`. I suppose it probably counts as substantial. In any case, having my name on a new publication is helpful and appreciated. Here are links...
I found the cause of the issue. In registration.cxx the lines: ```cxx #ifdef SPROKIT_LOAD_PYLIB_SYM const char *pylib = kwiversys::SystemTools::GetEnv( "PYTHON_LIBRARY" ); if( pylib ) { dlopen( pylib, RTLD_LAZY | RTLD_GLOBAL...
For the PYTHON_LIBRARY cmake variable? The docs for that are here: https://cmake.org/cmake/help/v3.0/module/FindPythonLibs.html Its documented to define: ``` PYTHONLIBS_FOUND - have the Python libs been found PYTHON_LIBRARIES - path to the...
Looking at the docs for [`dlopen`](https://linux.die.net/man/3/dlopen), it seems like if the environment variable is not defined we could provide a relative path perhaps something like this: ``` #ifdef KWIVER_PY2 dlopen(...
dlopen is linux only. This code is wrapped in an `#ifdef SPROKIT_LOAD_PYLIB_SYM`, which is only defined if UNIX in CMake. I do not know if this is an issue on...
Note: please see #388 for a fix to this issue.