Dan Villiom Podlaski Christiansen

Results 24 comments of Dan Villiom Podlaski Christiansen

Answering my own question, we settled on the following unholy hack: ```python import functools, sys from sqlserver import base from pytds import login orig_gcp = base.DatabaseWrapper.get_connection_params_pytds @functools.wraps(orig_gcp) def get_connection_params_pytds(self): """Returns...

> See my previous question: How does macports package pyobjc? The correct way to package the software is IMHO to package all subprojects, and not use install.py/develop.py. In order to...

> Is there a reason you're using a thread over the threaded mixin server? Well, yes; I wanted to use the `serve_forever()` method, with blocks the thread. I don't think...

Actually, I meant the realm not the scheme, but the URL is nice too, sorry! Rather than adding another specific HTTP exception class, perhaps it would be better to add...

Well, what'd be really nice for hg-git is using `urllib2` like Mercurial rather than `urllib3` — but that's probably too much to ask?

> After still more reflection, I've come to a key realization: License info rarely changes. So while it would be nice to source that data from the `_resources` area, baking...

> Being able to run port from the source directory without installing it would be useful for testing. Does this really work? Does it load all of its support files...

Okay, I've adjusted the script so that it's generated by `configure`; that should be more robust. I also added checks for out-of-source builds and build locations containing spaces, since both...

For what it's worth, this is essentially a duplicate of #126, which does the same, but in a slightly different manner. The root cause is OpenSSL 3 disabling legacy renegotiation...