[pypy-commit] pypy default: Reduce comment

arigo noreply at buildbot.pypy.org
Sun Mar 15 10:27:01 CET 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r76380:cbeb09d22625
Date: 2015-03-15 10:27 +0100
http://bitbucket.org/pypy/pypy/changeset/cbeb09d22625/

Log:	Reduce comment

diff --git a/rpython/rlib/rsocket.py b/rpython/rlib/rsocket.py
--- a/rpython/rlib/rsocket.py
+++ b/rpython/rlib/rsocket.py
@@ -5,15 +5,8 @@
 a drop-in replacement for the 'socket' module.
 """
 
-# Known missing features:
-#
-#   - address families other than AF_INET, AF_INET6, AF_UNIX, AF_PACKET
-#   - AF_PACKET is only supported on Linux
-#   - methods makefile(),
-#   - SSL
-#
-# It's unclear if makefile() and SSL support belong here or only as
-# app-level code for PyPy.
+# XXX this does not support yet the least common AF_xxx address families
+# supported by CPython.
 
 from rpython.rlib import _rsocket_rffi as _c, jit, rgc
 from rpython.rlib.objectmodel import instantiate, keepalive_until_here


More information about the pypy-commit mailing list