Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
c2671f9f
Commit
c2671f9f
authored
Sep 05, 2016
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document 1024 file limitation on Windows. Fixes #855.
parent
ceb361a3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
doc/gevent.socket.rst
doc/gevent.socket.rst
+2
-0
doc/intro.rst
doc/intro.rst
+7
-0
No files found.
doc/gevent.socket.rst
View file @
c2671f9f
...
...
@@ -62,6 +62,8 @@ functions not commonly used by many programs.
(POSIX platforms like Linux and OS X can use pipes and fifos
but Windows is limited to sockets).
.. note:: On Windows, gevent is limited to 1024 open sockets.
.. autofunction:: gevent.socket.wait_read
.. autofunction:: gevent.socket.wait_write
.. autofunction:: gevent.socket.wait_readwrite
...
...
doc/intro.rst
View file @
c2671f9f
...
...
@@ -31,9 +31,15 @@ greenlet__ library.
gevent 1.1 also runs on PyPy 2.6.1 and above, although 5.0 or above is
strongly recommended. On PyPy, there are no external dependencies.
gevent is tested on Windows, OS X, and Linux, and should run on most
other Unix-like operating systems (e.g., FreeBSD, Solaris, etc.)
.. note:: gevent does *not* run on PyPy on Windows because the CFFI backend
does not build.
.. note:: On Windows, gevent is limited to a maximum of 1024 open
sockets due to `limitations in libev`_.
gevent and greenlet can both be installed with `pip`_, e.g., ``pip
install gevent``. On Windows and OS X, both gevent and greenlet are
distributed as binary `wheels`_, so no C compiler is required (so long
...
...
@@ -50,6 +56,7 @@ __ http://pypi.python.org/pypi/greenlet
.. _`wheels`: http://pythonwheels.com
.. _`gevent 1.1`: whatsnew_1_1.html
.. _`cffi`: https://cffi.readthedocs.io
.. _`limitations in libev`: http://pod.tst.eu/http://cvs.schmorp.de/libev/ev.pod#WIN32_PLATFORM_LIMITATIONS_AND_WORKA
Common Installation Issues
--------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment