Oleg Höfling

Results 11 issues of Oleg Höfling

Brief looking at the code: ```python for i in range(seq_len): ... for i in range(self.n_glimpses): ... loss += self.criterion(logits, target[:,i]) ``` `i` will always be `self.n_glimpses - 1`, so the...

## 🚀 Feature Proposal Type hints in Python are specified by [PEP 484](https://www.python.org/dev/peps/pep-0484/) and are of a great help when developing, thus proposing to add them to Python codebase. Would...

E-easy
C-py

**Describe the bug** I need to host the website in a local network without internet access. Since `bootstrap-datetimepicker-plus` loads resources from CDN, the component can't be rendered. I can introduce...

When compiling interfaces into shared objects, `zope` cannot resolve them correctly. For an SSCCE, the compiled example interface from https://docs.zope.org/zope.interface/README.html raises ``` python zope.interface.exceptions.InvalidInterface: Concrete attribute, name ``` I collected...

Signed-off-by: oleg.hoefling This PR adds support for `graphql-core>=3` to `graphql.aiohttp.AiohttpSubscriptionServer`. Note that this will break the rest of the `BaseSubscriptionServer` implementations! Unfortunately, I am not familiar with Sanic or `gevent`...

Hi, first of all, thank you for this project! Does `pytest-mypy-plugins` allow to test the local stubs? Supposing the project has the following structure: ``` root/ ├── src/ | ├──...

enhancement

Source URLs of the format `http://pypi.python.org/packages/source/${REALNAME:0:1}/${REALNAME}/${REALNAME}-${REALVERSION}.tar.gz` are broken. This is a severe issue because atm, no package can be installed. Hardcoding URL format in code is also a bad idea...

### Describe the bug When cythonizing a module with [PEP 526](https://peps.python.org/pep-0526/) annotations, the corresponding lines are reported as not covered in coverage report. ### Code to reproduce the behaviour: ###...

### Describe the bug When cythonizing a decorated function, the function def line is reported as not covered in coverage report. ### Code to reproduce the behaviour: ### Example module...