Victor Stinner

Results 702 comments of Victor Stinner

I created https://github.com/buildbot/buildbot/issues/7826 "buildbot 4.0: Builders page doesn't limit to 25 builders per page".

> In Builds/Builders, cells in the "Builds" column are stuck at "Loading..." The problem may be related to https://github.com/buildbot/buildbot/issues/7826 : lack of pagination. Loading all data for 100 or 200...

On Firefox, the Waterfall View is truncated, the view seems to be limited to like 100 pixels!? ![Screenshot 2024-07-17 at 23-11-05 Buildbot](https://github.com/user-attachments/assets/be9a9754-c33d-4419-8b48-a4e4caf2814b) Same on Chromium. Something limits the height to...

I changed the Release Status page to an ugly but working page: https://github.com/python/buildmaster-config/commit/e5d6b0672b9c189a64c2c09eb91d77e20c4c7cdd

Please open a new issue: https://bugs.python.org/issue10141 is closed.

@abstractedfox: Can you add a NEWS entry? You can also try https://blurb-it.herokuapp.com/

If the PR changes `iselement()`, I don't think that it's safe to backport it to stable branches (3.13 and 3.14).

I would prefer to leave iselement() as it is: ```py def iselement(element): """Return True if *element* appears to be an Element.""" return hasattr(element, 'tag') ``` And add iselement() checks in...

Link to the line importing asyncore: https://github.com/ansible-collections/community.general/blob/cf55ef852e044d4d8be756522521cbf698d9fa22/tests/integration/targets/mail/files/smtpserver.py#L10