Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ui.clipboard should raise if the clipboard API isn't available #4237

Open
falkoschindler opened this issue Jan 18, 2025 · 2 comments
Open

ui.clipboard should raise if the clipboard API isn't available #4237

falkoschindler opened this issue Jan 18, 2025 · 2 comments
Labels
blocked Status: Blocked by another issue or dependency feature Type/scope: New feature or enhancement
Milestone

Comments

@falkoschindler
Copy link
Contributor

As discussed in #4236, ui.clipboard warns and returns an empty string if the clipboard API isn't available. I think it should raise instead so that the user code can decide how to handle the error case. As this is technically a breaking change, this issue is scheduled for 3.0.

@falkoschindler falkoschindler added the feature Type/scope: New feature or enhancement label Jan 18, 2025
@falkoschindler falkoschindler added this to the 3.0 milestone Jan 18, 2025
@falkoschindler falkoschindler changed the title How to determine whether the current connection is secure ui.clipboard should raise if the clipboard API isn't available Jan 18, 2025
@evnchn
Copy link
Contributor

evnchn commented Mar 12, 2025

I have thought about it for a bit.

I don't think it should raise an exception, but it should return None.

None and an empty string is distinguishable by is None, and I can pretty much say for 99% use cases, since people (1) don't type check and (2) this is not TypeScript, that it will be fine and work with situations such as if clipboard_result: statements.

Also, there is no concern that the clipboard API, when working, returns something like undefined or null, because according to MDN Web Docs, it returns an empty string if the clipboard is empty, does not contain text, or does not include a textual representation among the objects representing the clipboard's contents

Compared to raising an exception, which breaks all code if no action is taken when upgrading, and empty string, which breaks only if you do something like assert isinstance(a, str)

We can also push out the feature earlier.

Also, exceptions are just generally hard to deal with in my opinion. There is no way to deal with an exception without indenting in, but you can absolutely use the ternary operator in python for basically one-line if-else.

@evnchn
Copy link
Contributor

evnchn commented Mar 26, 2025

But then, in the Zen of Python by Tim Peters:

Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.

Question: Is not having access to the Clipboard API under HTTP (non-localhost) an "error"? Is raising a warning via log.warning considered "silent" or not?

And the most important question of all which we wont get the answer to (not easily): Can Tim Peters please come explain what he means?

@falkoschindler falkoschindler added the blocked Status: Blocked by another issue or dependency label Mar 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
blocked Status: Blocked by another issue or dependency feature Type/scope: New feature or enhancement
Projects
None yet
Development

No branches or pull requests

2 participants