Author: Ronan Lamy <[email protected]> Branch: annotator Changeset: r68827:ad6dac580b69 Date: 2014-01-21 16:30 +0000 http://bitbucket.org/pypy/pypy/changeset/ad6dac580b69/
Log: update flowspace module descriptions diff --git a/rpython/flowspace/flowcontext.py b/rpython/flowspace/flowcontext.py --- a/rpython/flowspace/flowcontext.py +++ b/rpython/flowspace/flowcontext.py @@ -1,5 +1,4 @@ -"""Implements the core parts of flow graph creation, in tandem -with rpython.flowspace.objspace. +"""Implements the core parts of flow graph creation. """ import sys diff --git a/rpython/flowspace/objspace.py b/rpython/flowspace/objspace.py --- a/rpython/flowspace/objspace.py +++ b/rpython/flowspace/objspace.py @@ -1,5 +1,4 @@ -"""Implements the core parts of flow graph creation, in tandem -with rpython.flowspace.flowcontext. +"""Implements the main interface for flow graph creation: build_flow(). """ from inspect import CO_NEWLOCALS diff --git a/rpython/flowspace/operation.py b/rpython/flowspace/operation.py --- a/rpython/flowspace/operation.py +++ b/rpython/flowspace/operation.py @@ -1,6 +1,5 @@ """ -This module defines mappings between operation names and Python's -built-in functions (or type constructors) implementing them. +This module defines all the SpaceOeprations used in rpython.flowspace. """ import __builtin__ _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
