Tim Savannah
Tim Savannah
Wassup, Tim! Looks pretty cool, I'll check it out! Thanks! One thing I notice, and maybe I'm doing it wrong, but it seems to be broken on my local in-dev...
Sorry for late reply, I am retired. Can we do this in a way that does not lose python2 support? I am not willing to lose that. Perhaps the .format...
Yeah you could. If you are using artifactory or whatever the new deal is, you can just publish a version 4.3.6 with your own changes, and it would always fetch...
You have found a real bug! This works in a file in python2, and works in python3 both interactive and with a file. The problem is interactive mode in python2,...
First, is this in python2 or python3? Second, everything should be referenced in the garbage collector. You can access this via the "gc" module, and "gc.collect" (takes optional "generation" argument)...
btw, I should add that the "del" statement does NOT free memory, it just removes a reference. So the garbage collector still needs to run for it to clean up....
In my test, this does perform well wiith smaller-sized lists (as in, faster than the python base list) But still python base list is faster for larger sizes (like around...
After my updates today, it performs even better. On a 400 element list with 200 random-index pops, single-linked-list and python base list perform the same, double-linked-list is faster. Below that,...
Hello, are you still there? Sorry, I have been away for a while. I'm not sure what your issue is, but for socket work func_timeout probably isn't the appropriate library....
Sorry for the delay, I've been away. I've fixed this issue. The change is committed under the currently unreleased 4.4branch (I need to write tests and such) If you want...