altermark

Results 9 comments of altermark

Not OP but this is the smallest script that leaks memory. Run it and see process memory grow. Remove the inner table and memory stays almost the same. import weasyprint...

After some more experimentation the following one leaks too. It was not the tables, but the text in the cell. If you remove the `x` from the following script, it...

And after the last round of testing my leak seems to be related to GTK version and probably only on Windows. I reverted WeasyPrint to 52.5 and GTK to GTK2...

Well, I didn't try to solve #1555. I was investigating a leak in my long running windows service that appeared after upgrading Weasyprint and GTK. In retrospect I should have...

This is the smallest (hopefully reproducible) case I have come up with (Win10, Py 3.8.5, CP 18.5.0): [cherrypy_timeout_error.zip](https://github.com/cherrypy/cheroot/files/5247236/cherrypy_timeout_error.zip) It's basic https server serving static file from the subdirectory `static`. If...

I see. `curl` reads 200KB in 4 seconds and then reads nothing from the connection until average speed drops down to 2048 and then continues reading from server. When large...

To reproduce the error message, the following code should be enough: ```python import requests import threading import time from cheroot.wsgi import Server from cheroot.ssl.builtin import BuiltinSSLAdapter def counter(): i =...

You can even stop the server after sleep and then read data from the buffer: ```python time.sleep(3) server.stop() server_thread.join() try: data = r.raw.read(2_000_000) print(">", len(data)) except Exception as err: print("Error...

AFAICT `engineCachePath` is stored to `CGO_LDFLAGS` https://github.com/go-flutter-desktop/hover/blob/master/cmd/build.go#L470-L478 and passed to `cgo`, where the flags are parsed. https://github.com/golang/go/blob/c5d7f2f1cbaca8938a31a022058b1a3300817e33/src/cmd/cgo/main.go#L289 Used parser function supports escaping of special characters https://groups.google.com/forum/#!topic/golang-nuts/aNDB4FrmEiA https://github.com/golang/go/blob/c5d7f2f1cbaca8938a31a022058b1a3300817e33/src/cmd/cgo/gcc.go#L104-L120 But it seems...