[pypy-commit] pypy test-cpyext: Document a bit (and commit missing __init__.py)

rlamy pypy.commits at gmail.com
Mon Oct 3 13:40:32 EDT 2016


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: test-cpyext
Changeset: r87547:44a7adf643a1
Date: 2016-10-03 18:39 +0100
http://bitbucket.org/pypy/pypy/changeset/44a7adf643a1/

Log:	Document a bit (and commit missing __init__.py)

diff --git a/pypy/tool/cpyext/__init__.py b/pypy/tool/cpyext/__init__.py
new file mode 100644
--- /dev/null
+++ b/pypy/tool/cpyext/__init__.py
@@ -0,0 +1,4 @@
+"""
+Support code for pypy/module/cpyext/test/. This is here so that it can be
+imported by Python3 when running -A tests.
+"""
diff --git a/pypy/tool/cpyext/extbuild.py b/pypy/tool/cpyext/extbuild.py
--- a/pypy/tool/cpyext/extbuild.py
+++ b/pypy/tool/cpyext/extbuild.py
@@ -33,9 +33,6 @@
 
         name is the name of the module, possibly including dots if it is a
         module inside a package.
-
-        Any extra keyword arguments are passed on to ExternalCompilationInfo to
-        build the module (so specify your source with one of those).
         """
         include_dirs = include_dirs or []
         modname = name.split('.')[-1]


More information about the pypy-commit mailing list