Graham Dumpleton
Graham Dumpleton
Are you using Python 3? I don't even get the same error as you for the initial example. I am using Python 2.7. ``` File "/Users/graham/Projects/wrapt/venv/lib/python2.7/copy_reg.py", line 70, in _reduce_ex...
Did you try your examples you had with `vars()` and get something actually working? My initial attempt failed as per above. I haven't had a chance to dig deeper yet.
Sorry for the slow reply on this. One may be able to put together a wrapper which would be smart enough to behave the right way even when applied to...
First attempt. This only deals with it being used on a `getter` property. I have to think through the `setter` and `deleter` cases as when dealing with those, even knowing...
Better version. If you use `remove()` inside of `@property` for `getter`, must be inside of the decorator for any `setter` and `deleter` as well, as per third attribute example. If...
As wrapt has a pure Python fallback, if it cannot be done in pure Python now, then wouldn't be able to be universally supported. Anyway, I will have a dig...
I don't have a good answer of what to do here. What it comes down to is that yes you can likely do it in the C version of the...
I have no time to look after this site is why nothing is updated. I tried to find someone who was in a position to take over but have not...
My guess at what is needed is to add to ``butterfly/escapes.py`` an escape of: ``` @contextmanager def url(): sys.stdout.write('\x1bP;URL|') yield sys.stdout.write('\x1bP') sys.stdout.flush() ``` and then in function: * https://github.com/paradoxxxzero/butterfly/blob/master/coffees/term.coffee#L1233 and...
The problem with this is how to do it so as to avoid popup blocker. :-(