Julianus Pfeuffer

Results 225 issues of Julianus Pfeuffer

The domain of our webserver changed from: https://abibuilder.informatik.uni-tuebingen.de/ to https://abibuilder.cs.uni-tuebingen.de/ Please report occurrences of the old URLs and if you know how to, create a PR or make an edit...

blocker
Documentation
Website

Do we need the modifiability? If not, we can just use tuple. Otherwise, we need a non-const named tuple.

Currently, we do: ``` Cython implementation: ... Cython implementation: ... Documentation can be found here: $URL$ $Additional wrap-doc$ ``` First: I think autodoc-docstring-signatures would be much more helpful than the...

Currently, we write it to the pxd only. But since pyi typestubs overwrite signatures and docs for most IDEs, we should additionally put the docs to the typestubs. Maybe we...

documentation
good first issue
first-timers-only

Should work with wrapped extension and primitive types. https://stackoverflow.com/questions/45943940/cython-stdfunction-callbacks-with-custom-parameter-types https://stackoverflow.com/questions/39044063/pass-a-closure-from-cython-to-c/39052204#39052204 https://github.com/hildensia/py_c_py If possible without using boost::python, but it would not be a dealbreaker, if it can be made optional. Some...

- [X] missing unicode leads to warnings when parsing types in a python 3 environment (maybe we should only use EITHER unicode or str, depending on the current version of...

Instead of: ```python class Outer: Inner = _Inner class _Inner: ... ``` We could do ```python class Outer: class Inner(_Inner): pass class _Inner ... ``` This would help generate documentation...

at least - missing

- booleans currently use int, should be bool - output strings have the usual Union of multiple string types. But we output a specific encoding. Check which. Figure out how...

good first issue
first-timers-only

- Type hints - Auto lint (flake, black, prettier,..?) - Documentation - require py 3.6 and use f-strings for all the template code. Maybe even use a templating library if...

documentation