Jonathan Vanasco
Jonathan Vanasco
This error popped up while working on a project that subclasses this. There is a backup function to invoke `self.callback_url` on the Twython class, however that attribute is never assigned...
Has anyone considered tracking ratelimits within Twython, to avoid hitting their API when it will most-likely fail? We have a lot of code that does it externally. I want to...
While working with this library, I noticed that namecheap doesn't have a standard use of case. Sometimes an attribute is `ERROR` and other times it is `Error`. `False` + `false`,...
**Bug Report** I think this is a bug, as I get inconsistent results across multiple invocations. Depending on how I define a Type Alias, it can or can not be...
server backed sessions have an `.id` property ( the value of the set-cookie's header ) for whatever reason(s), this was omitted from pyramid's ISession and consequently from pyramid_beaker, which makes...
The issue appears to happen when I raise a `pyramid.httpexceptions` redirect early during a class-based view handler. (in `__init__`, not `call()` ). I haven't been able to pinpoint exactly why...
Before `config.add_debugtoolbar_panel`, the way to add custom panels was via config.registry.settings['debugtoolbar.panels'].append(PANEL) or config.registry.settings['debugtoolbar.extra_panels'].append(PANEL) The end behavior of this, was an adjustment to the application config (.ini but now it can...
Under the current toolbar design, if an error occurs in a debug panel or panel rendering, a generic wsgi error is generated. I propose wrapping the invocations of various panel...
When doing repetitive testing against a single route, it's become a bit of a chore to determine which request I wished to inspect. The left sidebar shows the same information...
I tracked down an odd issue (which is a bit of a variant from closed #237) this is caused by the pyramid design of finished callbacks happening after the tween...