Simson L. Garfinkel

Results 853 comments of Simson L. Garfinkel

I was thinking of implementing it more-or-less the same way I did with bulk_extractor: - Special unit test targets that use a C/C++ unit test framework - Implemented as a...

> Given this was discussed before in #2472 I would recommend to go ahead with the proposal. If you're going for GitHub actions, I recommend removing the travis and appveyor...

I've been reviewing this. The problem with upgrading to Spacy NER model version 3.4 is that the current resume code seems to have its own model bundled in. Do we...

try this and let me know? ``` import os.path bottle.TEMPLATE_PATH.append( os.path.relpath( CURRENT_DIRECTORY / 'views')) ```

Oh, that makes sense. So jinja2 is turing it into an absolute path name and then bottle is complaining. So we don't know why the author decided to depreciate this...

[PEP 594](https://peps.python.org/pep-0594/): Remove the cgi and cgitb modules, deprecated in Python 3.11. cgi.FieldStorage can typically be replaced with [urllib.parse.parse_qsl()](https://docs.python.org/3.13/library/urllib.parse.html#urllib.parse.parse_qsl) for GET and HEAD requests, and the [email.message](https://docs.python.org/3.13/library/email.message.html#module-email.message) module or [multipart](https://pypi.org/project/multipart/)...

If the only requirement is to handle `multipart` and nothing else, it should not be hard to write a parser that does just that. `multipart` is not complex.

I'm also fine with copying the lines we from the `cgi` library into bottle.

Ah. I didn’t see that. On Mon, Dec 11, 2023 at 1:25 AM valq7711 ***@***.***> wrote: > @simsong what do you mean? It passed the > test https://github.com/valq7711/bottle/actions/runs/7160872053 > Multipart...