Martin Roy

Results 18 issues of Martin Roy

Hello! Thank you for your tool, it's an amazing idea! # Issue While introducing it in a new project I noticed that `cruft update` will not honor the branch in...

Hello! I just noticed that the method `get_oauth_application` (defined [here](https://github.com/PyGithub/PyGithub/blob/master/github/MainClass.py#L765)) is missing a declaration in the [type declaration](https://github.com/PyGithub/PyGithub/blob/master/github/MainClass.pyi#L29). By the way, [get_app](https://github.com/PyGithub/PyGithub/blob/master/github/MainClass.py#L773) also seems to be missing. Thank you very...

Hello, thank you for the tool! It seems the `get_unverified_header` is missing types to use in a strict mypy configuration! https://github.com/jpadilla/pyjwt/blob/master/jwt/api_jws.py#L202 If I am not mistaken, this might do it:...

help wanted
good first issue
stale

Hello! First, thank you for the tool! I noticed there are some warnings from marshmallow that needs to be addressed: since `marshmallow>=3.10.0` https://github.com/marshmallow-code/marshmallow/commit/013abfd669f64446cc7954d0320cf5f1d668bd49 ``` RemovedInMarshmallow4Warning: Passing field metadata as a...

Hi, i've been playing around with your server with this little script: ``` import redislite from redis import Redis server=redislite.Redis(serverconfig={'port': '35000'}) print server.keys() client = Redis(port=35000) client.rpush("mykey", "hey") print server.lpop("mykey")...

Hello! When trying to install on alpine, pkgconfig and cython seems to be missing. (If i pre install pkgconfig, the cython import will cause the problem) I'm expecting installing this...

Hello! It would seem that there is an behaviour inconsistency based on the type of a struct member when deserializing. ``` foo.Foo.from_bytes(serialized) ``` # Expected behaviour Deserializing a message that...

Hello! Always been a great fan of this library! **Disclaimer: I'm new to mypy, so this might just be me lacking understadings, if so, i'm sorry i'll close this.** I'm...

Hello! It seems the 'operatorPrecendence' that was deprecated is not available anymore and produces: ``` ImportError: cannot import name 'operatorPrecedence' from 'pyparsing' ``` Maybe the requirements of should be updated...

Hello! It would seem that when using `flexmock().new_instances()` in python 3.4 won't clean the bindings on the class upon calling teardown. This is an example script using latest flexmock==0.10.2 on...

bug
upstream