Marius Gedminas
Marius Gedminas
The old mechanize-based zope.testbrowser behaved like this: ```rst >>> print(browser.contents) ... ... >>> browser.getControl(name='closed').value False ``` The new webtest-based zope.testbrowser returns `[]` instead of `False`. Which is fine, I suppose,...
Another of those mechanize-to-webtest compatibility issues: ``` >>> print(browser.contents) ...Reviewer ... >>> browser.getControl('Reviewer').value = 'manager' ``` This used to work, now it fails with a LookupError. (I'm fine with the...
The old mechanize-based zope.testbrowser allowed the following: ```rst >>> print(browser.contents) ... ... >>> browser.getLink(url='preview') >>> browser.getLink(url='preview').click() ``` The new WebTest-based zope.testbrowser does not treat iframes as links. (I'm not arguing...
Given a form like ```html ``` if you find the ItemControl for `foo` (call it `item`) and set `item.selected = True` twice in a row, zope.testbrowser ends up calling WebTest's...
IControl doesn't define `readonly`, which looks like part of the API. (Although note that IListControl classes don't have `readonly` properties.) IControl.type has a list of values that doesn't mention `textarea`....
- **Operating system and version**: Ubuntu 24.04 - **Python version**: 3.12 - **pycookiecheat version**: whatever's the latest on PyPI currently, which is 0.7.0; `pipx run pycookiecheat --version` doesn't understand the...
I have code like this: ```jsx const renderThing = props => ( /* Render a thing */ {props.a_thing} ); ``` The `` does not get highlighted as JSX (it's showing...
## Description Adds a failing tests (marked xfail) for issue #9119. No actual solution yet, sorry about that (and the delay).
# Checklist - [x] I have verified that the issue exists against the `main` branch of Celery. - [ ] This has already been asked to the [discussions forum](https://github.com/celery/celery/discussions) first....
## Expected Behaviour Use Neomutt like always. ## Actual Behaviour My `set index_format` customizations and macros now cause an error. ## Steps to Reproduce 1. `set index_format="%4C%?M?+& ?%Z %[%m-%d] %-15.15F...