Commit 8b0432b4 authored by Jason Madden's avatar Jason Madden

Add change note to docs. [skip ci]

parent 00821040
......@@ -45,6 +45,12 @@ Python 2 and Python 3, respectively.
The cooperative socket object. See the version documentation for
specifics.
.. versionchanged:: 20.12.0
Socket objects no longer have a ``__dict__`` or accept
arbitrary instance variables. Previously they did, but
standard library sockets never have.
.. toctree::
......
......@@ -311,6 +311,8 @@ def prereleaser_middle(data): # pragma: no cover
new_version_bytes = new_version
new_version_bytes = new_version.encode('ascii')
replacement = br'.. \1:: %s' % (new_version_bytes,)
# TODO: This should also look in the docs/ directory at
# *.rst
for path, _ in modules.walk_modules(
# Start here
basedir=os.path.join(data['reporoot'], 'src', 'gevent'),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment