Deniz

Results 124 comments of Deniz

@GrahamDumpleton This is the output (formatted by me): ``` FullArgSpec( args=['wrapped', '_instance', 'args', 'kwargs'], varargs=None, varkw=None, defaults=None, kwonlyargs=[], kwonlydefaults=None, annotations={}, ) ``` I honestly don't know how PyCharm performs introspection...

@GrahamDumpleton My apologies, I thought you meant `getfullargspec` of the decorator itself (`wrapper` in your example), doh. Obviously you meant the wrapped function, here is the correct output: ``` FullArgSpec(...

Unfortunately, using the develop.zip archive, PyCharm still complains with the same warning: ![image](https://user-images.githubusercontent.com/50928/58089390-e9ede800-7bc4-11e9-9611-11e13f4cf940.png) With this code: ```python import wrapt @wrapt.decorator def wrapper(wrapped, _instance, args, kwargs): return wrapped(*args, **kwargs) @wrapper def...

I haven't used this library myself yet, but as I understand from the documentation, I think `currentDuration` is the current time and `totalDuration` is the total length. `watchDuration` is how...

For the life of me I can't get any of this to work. I feel like I've tried every combination that supposedly should work, but it just doesn't. Maybe I...

Thank you so much for the explanation, @networkprogrammer, that clarifies a lot.

I just wanted to check in on the progress here! Are we there yet? 😄

In case anyone is reading this in 2019, the short answer is: no, there is no active fork.

All of the pbr requirements seem to stem from various dependencies of pyrax, which is a deprecated library for interacting with Rackspace. I think if you're not using Rackspace, it...

@thedrow That's actually what I'm working on in my spare time, basically just a rewrite of requests-oauthlib but using httpx and possibly implementing other improvements as I find them. The...