Maxime Liquet

Results 368 comments of Maxime Liquet

The same error can be reproduced with setting up `objects` **before** `super` is called in a Parameterized constructor. ```python import param class P(param.Parameterized): s = param.Selector() def __init__(self, **params): self.param.s.objects...

The issue in my first post was fixed: ![image](https://github.com/holoviz/param/assets/35924738/d6f81ba0-a928-4ea4-af74-e757baf10aaa) Not in the second one though: ![image](https://github.com/holoviz/param/assets/35924738/ca5296a5-b476-47da-92fe-ad04a082d667)

Duplicate of https://github.com/holoviz/param/issues/205, except that the conclusion reached here (convert to `int`) is different than in that previous issue (accept more types and don't convert). While I get the intent...

> While generally true, I have recently discovered a case where inserting an integer into a SQLite database fails because it is a numpy.int64 object and not a Python int....

Trying to simplify the original example by removing Panel related code. ```python import param class Other(param.Parameterized): busy = param.Boolean(default=False) other = Other() class A(param.Parameterized): @param.depends(other.param.busy, watch=True) def debug(self, *args, **kwargs):...

As mentioned above, this is a duplicate of #1

I cannot reproduce based on the latest Panel and Param on the *main* branch. The last line below is the difference with what the OP shared. ``` A1: on event...

I could reproduce the issue reported by Jean-Luc a long long time ago! In a`./dummy` folder create `issue139.py` containing the following and run it from there: ```python import param class...

@jbednar I have updated your table, adding a first column with my comments and actions: - Priority 1 was to clean up the Parameterized namespace to avoid name clashes, this...

I believe that this issue can be closed for now, all the removals that were reasonable enough were made. Many deprecation warnings are now in place, we will need to...