ldeluigi

Results 85 comments of ldeluigi

Should these widgets be enabled by default? I think that everyone would appreciate seeing time fields converted to local time on their browser. Plus: If a datetime field has editable=False,...

> @ldeluigi at the moment the widget is "just" using the standard html input types for date and times, not the local time. I think for that we need another...

After some investigation, I found out that the problem is related to the fact that each solve() call uses the same variable to store the log file name, because there...

I thought it would just be a matter of removing the global instance (the singleton) and replacing broken references with new references to a local instance, optionally passed to the...

Each factory would then use its own stack I think. Maybe I didn't understand something. If that's the case, I'm sorry

Another problem would be that there is no APPSI for GLPK

Today I came up with a monkeypatch idea for the problem. What do you think about this code? I've put it at the bottom of [tempfiles.py](https://github.com/Pyomo/pyomo/blob/main/pyomo/common/tempfiles.py) locally. I tested it...

I'll work on this in the future, thanks for the feedback!

> * I like the idea of making the `TempfileManager` "thread-specific" (we probably want to also consider this in other contexts where we have global stacks, e.g., `PauseGC`) Yeah, PauseGC...