-
http://blog.hownowstephen.com/post/50743415449/gevent-tutorial
Coroutines in gevent have to yield before blocking operations, that yield can't be done if the code uses C for doing the blocking part. …
-
**Description**
When I try "client.get_product_info(apps=[app_id], timeout=1)" I get an timeout. Of course before I initialize and login the Client and login anonymously with
```
client = SteamClie…
-
In [1]: from locust import TaskSet
In [2]:
Traceback (most recent call last):
File "./manage.py", line 7, in
execute_from_command_line(sys.argv)
File ".../lib/python3.5/site-packages/d…
-
Bonjour,
I went into install difficulties. I found the need to follows these steps on debian:
$ sudo apt-get install libevent-dev
$ sudo apt-get install python-all-dev
$ sudo pip insta…
-
To reproduce, create a conftest.py with the following content:
```
from gevent import monkey
monkey.patch_all()
```
And run py.test --flake8 in that folder.
py.test itself runs fine, so do…
-
```
import time
import gevent.monkey
gevent.monkey.patch_all()
a = time.time()
mc.set('a', 1)
def add(key):
#with lock:
mc.incr(key)
jobs = []
for i in xrange(1000):
jobs.append(gevent.…
-
Traceback (most recent call last):
File "C:\Users\UFO\Desktop\POC\漏扫\日常收集\GHR-main\GHR.py", line 176, in
ghr.vuln_main()
File "C:\Users\UFO\Desktop\POC\漏扫\日常收集\GHR-main\GHR.py", line 136, …
-
In [Notes for Windows users](https://gehrcke.de/gipc/winnotes.html) you mention that a `libuv` backend might solve some problems for Windows users. Since gevent 1.3 I think it should be possible to us…
-
I got the following traceback while I was testing that the maximum pool size didn't impact our database. I assume I exceeded the max pool size here?
We're using Django + ASGI + Django-channels + uv…
-
## Describe the bug
A exception is raise when running some tasks on 13 hosts. I do not get the error when running only on 4 hosts, or only 1 hosts. I suspect the error shows more often as the number …