Stefan Richthofer

Results 9 issues of Stefan Richthofer

With ``slide_theme = 'slides2'`` I always get slide numbers like ``2/15``on the bottom right corner of every slide, except on title page. I tried to set ``slide_numbers = False`` explicitly...

Compatibility with the new upcoming typing module is not yet established. I'm working on this as far as time allows, help welcome. https://github.com/Stewori/pytypes/commit/928fd6257272656c346e91fe433dd4e0fc08cff7 was the first milestone of this process,...

See my comments in https://github.com/Stewori/pytypes/pull/94.

For runtime typechecking `deep_type` is used to determine the PEP 484 type of a given object. Then `is_subtype` is used to detect if the type is acceptable. E.g. `[2]` is...

... is currently broken: ``` Traceback (most recent call last): File "/data/workspace/linux/JyNI/JyNI-Demo/src/JyNINumPyTest.py", line 68, in import numpy as np File "/data/workspace/linux/numpy/1.14.0/numpy/__init__.py", line 168, in from . import ma File "/data/workspace/linux/numpy/1.14.0/numpy/ma/__init__.py",...

This issue is sourced out from #32, see https://github.com/Stewori/JyNI/issues/32#issuecomment-417964526 and https://github.com/Stewori/JyNI/issues/32#issuecomment-418029114. Reproducible by this code: ``` import sys sys.path.insert(0, '/data/workspace/linux/numpy/1.13.3') import numpy as np from java.lang import System import time...

In #10 it was explained how to build JyNI in debug mode. That requires editing the makefile so we should better have a build target for debug. I created this...

``` str1 = whatever; if (strlen(str1) == 0) return whatever; char str2[strlen(str1)+ 1]; strcpy(str2, str1); whatever ``` becomes something like ``` str1 = whatever; if (strlen(str1) == 0) return whatever;...

The newest antlr4 jar file distributed on maven central, i.e. https://repo1.maven.org/maven2/org/antlr/antlr4/4.13.1/antlr4-4.13.1.jar, lacks an automatic module name in its manifest file. That is inconsistent to the behavior of antlr4-runtime, which does...