Dan Hemberger

Results 39 issues of Dan Hemberger

Whenever we set the browser state, include the request response. The `response` property will raise an `AttributeError` if the state has not yet been set. This is not strictly necessary,...

stateful_browser.py: rename submit_selected to submit … The obvious method to use when trying to submit a form is the `submit` method. Unless you are following the documentation explicitly, you may...

As we consider how we want MechanicalSoup to look when we release version 1.0, especially with some of the recent work we've been doing, it made me realize how difficult...

question
deferred

Prior to b5de3b45098bc143165dad4eab50358d86fa1353, it was not possible to set `__current_page` to `None`. This had the nice side-effect that if you clicked on, for example, a download link, you could continue...

enhancement

This is a feature request. Gnome Terminal has an option to select a variant of the system theme: ![image](https://user-images.githubusercontent.com/846186/81633177-f9aba100-93c0-11ea-9474-4b9afb26a953.png) This has been perfect for me, because I like the "Yaru...

enhancement

# Feature request With the new default template in v3.0.0, I don't see any way to identify when `phpdoc` was run or which version of `phpdoc` was used. Would it...

template

The purpose of this change is to improve the support for resource management and introspection of the `Container` class by adding the following methods: * `Container::reset` - unsets an entry...

enhancement

# Bug report ### Code snippet that reproduces the problem ```php const X = []; if (!empty(X)) { foreach (X as $y) { print($y); } } ``` PHPStan 1.8.3 incorrectly...

feature-request

The type of container that is actually built may be more specialized than the Container base class. As such, make sure we use the proper return typehints. I found this...

# Bug report If a parameter accepts a union of arrays, e.g. `array|array`, then I would expect a warning if I pass it an array of unions, e.g. `array`. My...

feature-request