Ashley Whetter
Ashley Whetter
I am building with `-DPCLOUD_TLS_IMPL:STRING='openssl'` but I get the following build errors: ``` /home/ashley/workspace/pcloud-console-client/src/pcloud-console-client-3.0.0-a2/src/psync/pssl-openssl.c: In function ‘RSA_memory_lock_fixed’: /home/ashley/workspace/pcloud-console-client/src/pcloud-console-client-3.0.0-a2/src/psync/pssl-openssl.c:434:8: error: invalid use of incomplete typedef ‘RSA’ {aka ‘struct rsa_st’} 434 |...
I'm new to go so I apologise for the lack of details here, but I'm trying to convert https://csrc.nist.gov/schema/nvd/feed/1.1/nvd_cve_feed_json_1.1.schema to go structs. It references https://csrc.nist.gov/schema/nvd/feed/1.1/CVE_JSON_4.0_min_1.1.schema. I've downloaded both and I'm...
`poetry` is listed as a build dependency, but it should only require `poetry_core`. I believe this would require upping the minimum version required, but these days that seems like a...
Running the tests outputs the following warning: ``` .tox/py312/lib/python3.12/site-packages/sphinx/ext/autodoc/__init__.py:818: RemovedInSphinx80Warning: Returning tuples of (name, object) as the second return value from get_object_members() is deprecated. Return ObjectMember(name, object) instances instead. for...
Much of the code isn't type annotated currently. We should be aiming to be able to enable strict type checking to get as much benefit from type checking as possible.
We frequently get bug reports with no method of reproducing the issue. Create a bug report template that makes providing this information a requirements.
Essentially, we need to address this TODO that's in the tests: https://github.com/readthedocs/sphinx-autoapi/blob/99366617719f8e57d3b1807bc977d3153434750c/tests/python/test_pyintegration.py#L352-L355
The new landing page of the documentation introduces the maintainer guide as though that section will guide someone through making a contribution. No such content exists, so write a contribution...
Currently a function's or method's arguments are output with the following format: ``` Parameter ``arg1``: This is the description. This is a continued line of the description. Parameter ``arg2``: This...
Reading the following docstring ``` """ Blah :Parameters: arg1 :C{string} or C{int} Does something """ ``` results in the following Google docstring ``` """Blah Args: arg1 (string} or C{int): Does...