Gregory P. Smith
Gregory P. Smith
yep, discord supports webhooks. ideal for this.
... any chance this proposal might happen? _(I realize that's probably just asking if anyone is going to take on the work and I"m not here volunteering so... mostly just...
release blocker status just to help force consideration. It may wind up deferred.
A higher level question: Why would we want to maintain advanced features that are not used by most people within the standard library at all? This code existing in the...
good point, moved, thanks! _(where to have what discussions is an area where I consider github's UX to be... not great)_
Just let us know directly (in private or here is fine). Google recently deprecated whatever Calendar feature that was using so we need to set something else up. Slots are...
@emilyemorehouse I think you got something setup in Notion that appeared to work? Can we make that official?
Python-side fixes will be in the next 3.12 and 3.13 patch releases. What gitpython can do to work around it is something along the lines of this workaround within `git.cmd._terminate`:...
That's somewhat awkward, you could just always `import signal` at the top level and call .`send_signal(signal.SIGTERM)` itself as in the exception handler. But at least leave a comment as to...
That workaround is POSIX platform specific, `.send_signal` on Windows will still have the issue but `.terminate` itself should work there as it calls a windows specific API directly.