Skip to content

Commit c6efb06

Browse files
committed
PYTHON-1849 Ignore patch_all return value added in gevent 1.4+
1 parent d847e01 commit c6efb06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/examples/gevent.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ PyMongo supports `Gevent <http://www.gevent.org/>`_. Simply call Gevent's
88

99
>>> # You must call patch_all() *before* importing any other modules
1010
>>> from gevent import monkey
11-
>>> monkey.patch_all()
11+
>>> _ = monkey.patch_all()
1212
>>> from pymongo import MongoClient
1313
>>> client = MongoClient()
1414

0 commit comments

Comments
 (0)